blob: 9aa2e4447900b743205b8d5122ed8aab2cdac41e [file] [log] [blame]
Kalle Valobdcd8172011-07-18 00:22:30 +03001/*
2 * Copyright (c) 2007-2011 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 "core.h"
18#include "htc_hif.h"
19#include "debug.h"
20#include "hif-ops.h"
21#include <asm/unaligned.h>
22
23#define CALC_TXRX_PADDED_LEN(dev, len) (__ALIGN_MASK((len), (dev)->block_mask))
24
Kalle Valodfa01042011-09-06 11:10:49 +030025static void ath6kl_htc_tx_buf_align(u8 **buf, unsigned long len)
Vasanthakumar Thiagarajan94e532d2011-08-22 20:14:31 +053026{
27 u8 *align_addr;
28
29 if (!IS_ALIGNED((unsigned long) *buf, 4)) {
30 align_addr = PTR_ALIGN(*buf - 4, 4);
31 memmove(align_addr, *buf, len);
32 *buf = align_addr;
33 }
34}
35
Kalle Valodfa01042011-09-06 11:10:49 +030036static void ath6kl_htc_tx_prep_pkt(struct htc_packet *packet, u8 flags,
37 int ctrl0, int ctrl1)
Kalle Valobdcd8172011-07-18 00:22:30 +030038{
39 struct htc_frame_hdr *hdr;
40
41 packet->buf -= HTC_HDR_LENGTH;
42 hdr = (struct htc_frame_hdr *)packet->buf;
43
44 /* Endianess? */
45 put_unaligned((u16)packet->act_len, &hdr->payld_len);
46 hdr->flags = flags;
47 hdr->eid = packet->endpoint;
48 hdr->ctrl[0] = ctrl0;
49 hdr->ctrl[1] = ctrl1;
50}
51
52static void htc_reclaim_txctrl_buf(struct htc_target *target,
53 struct htc_packet *pkt)
54{
55 spin_lock_bh(&target->htc_lock);
56 list_add_tail(&pkt->list, &target->free_ctrl_txbuf);
57 spin_unlock_bh(&target->htc_lock);
58}
59
60static struct htc_packet *htc_get_control_buf(struct htc_target *target,
61 bool tx)
62{
63 struct htc_packet *packet = NULL;
64 struct list_head *buf_list;
65
66 buf_list = tx ? &target->free_ctrl_txbuf : &target->free_ctrl_rxbuf;
67
68 spin_lock_bh(&target->htc_lock);
69
70 if (list_empty(buf_list)) {
71 spin_unlock_bh(&target->htc_lock);
72 return NULL;
73 }
74
75 packet = list_first_entry(buf_list, struct htc_packet, list);
76 list_del(&packet->list);
77 spin_unlock_bh(&target->htc_lock);
78
79 if (tx)
80 packet->buf = packet->buf_start + HTC_HDR_LENGTH;
81
82 return packet;
83}
84
85static void htc_tx_comp_update(struct htc_target *target,
86 struct htc_endpoint *endpoint,
87 struct htc_packet *packet)
88{
89 packet->completion = NULL;
90 packet->buf += HTC_HDR_LENGTH;
91
92 if (!packet->status)
93 return;
94
95 ath6kl_err("req failed (status:%d, ep:%d, len:%d creds:%d)\n",
96 packet->status, packet->endpoint, packet->act_len,
97 packet->info.tx.cred_used);
98
99 /* on failure to submit, reclaim credits for this packet */
100 spin_lock_bh(&target->tx_lock);
101 endpoint->cred_dist.cred_to_dist +=
102 packet->info.tx.cred_used;
103 endpoint->cred_dist.txq_depth = get_queue_depth(&endpoint->txq);
104
105 ath6kl_dbg(ATH6KL_DBG_HTC_SEND, "ctxt:0x%p dist:0x%p\n",
106 target->cred_dist_cntxt, &target->cred_dist_list);
107
108 ath6k_credit_distribute(target->cred_dist_cntxt,
109 &target->cred_dist_list,
110 HTC_CREDIT_DIST_SEND_COMPLETE);
111
112 spin_unlock_bh(&target->tx_lock);
113}
114
115static void htc_tx_complete(struct htc_endpoint *endpoint,
116 struct list_head *txq)
117{
118 if (list_empty(txq))
119 return;
120
121 ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
122 "send complete ep %d, (%d pkts)\n",
123 endpoint->eid, get_queue_depth(txq));
124
125 ath6kl_tx_complete(endpoint->target->dev->ar, txq);
126}
127
128static void htc_tx_comp_handler(struct htc_target *target,
129 struct htc_packet *packet)
130{
131 struct htc_endpoint *endpoint = &target->endpoint[packet->endpoint];
132 struct list_head container;
133
134 htc_tx_comp_update(target, endpoint, packet);
135 INIT_LIST_HEAD(&container);
136 list_add_tail(&packet->list, &container);
137 /* do completion */
138 htc_tx_complete(endpoint, &container);
139}
140
Vasanthakumar Thiagarajane041c7f2011-07-16 20:29:09 +0530141static void htc_async_tx_scat_complete(struct htc_target *target,
142 struct hif_scatter_req *scat_req)
Kalle Valobdcd8172011-07-18 00:22:30 +0300143{
Vasanthakumar Thiagarajane041c7f2011-07-16 20:29:09 +0530144 struct htc_endpoint *endpoint;
Kalle Valobdcd8172011-07-18 00:22:30 +0300145 struct htc_packet *packet;
146 struct list_head tx_compq;
147 int i;
148
149 INIT_LIST_HEAD(&tx_compq);
150
151 ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
152 "htc_async_tx_scat_complete total len: %d entries: %d\n",
153 scat_req->len, scat_req->scat_entries);
154
155 if (scat_req->status)
156 ath6kl_err("send scatter req failed: %d\n", scat_req->status);
157
Vasanthakumar Thiagarajane041c7f2011-07-16 20:29:09 +0530158 packet = scat_req->scat_list[0].packet;
159 endpoint = &target->endpoint[packet->endpoint];
160
Kalle Valobdcd8172011-07-18 00:22:30 +0300161 /* walk through the scatter list and process */
162 for (i = 0; i < scat_req->scat_entries; i++) {
163 packet = scat_req->scat_list[i].packet;
164 if (!packet) {
165 WARN_ON(1);
166 return;
167 }
168
169 packet->status = scat_req->status;
170 htc_tx_comp_update(target, endpoint, packet);
171 list_add_tail(&packet->list, &tx_compq);
172 }
173
174 /* free scatter request */
175 hif_scatter_req_add(target->dev->ar, scat_req);
176
177 /* complete all packets */
178 htc_tx_complete(endpoint, &tx_compq);
179}
180
Kalle Valodfa01042011-09-06 11:10:49 +0300181static int ath6kl_htc_tx_issue(struct htc_target *target,
182 struct htc_packet *packet)
Kalle Valobdcd8172011-07-18 00:22:30 +0300183{
184 int status;
185 bool sync = false;
186 u32 padded_len, send_len;
187
188 if (!packet->completion)
189 sync = true;
190
191 send_len = packet->act_len + HTC_HDR_LENGTH;
192
193 ath6kl_dbg(ATH6KL_DBG_HTC_SEND, "%s: transmit len : %d (%s)\n",
194 __func__, send_len, sync ? "sync" : "async");
195
Vasanthakumar Thiagarajan5be88242011-07-18 14:23:28 +0530196 padded_len = CALC_TXRX_PADDED_LEN(target, send_len);
Kalle Valobdcd8172011-07-18 00:22:30 +0300197
198 ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
199 "DevSendPacket, padded len: %d mbox:0x%X (mode:%s)\n",
200 padded_len,
201 target->dev->ar->mbox_info.htc_addr,
202 sync ? "sync" : "async");
203
204 if (sync) {
205 status = hif_read_write_sync(target->dev->ar,
206 target->dev->ar->mbox_info.htc_addr,
207 packet->buf, padded_len,
208 HIF_WR_SYNC_BLOCK_INC);
209
210 packet->status = status;
Kalle Valo65d2bb12011-08-14 18:10:03 -0700211 packet->buf += HTC_HDR_LENGTH;
Kalle Valobdcd8172011-07-18 00:22:30 +0300212 } else
213 status = hif_write_async(target->dev->ar,
214 target->dev->ar->mbox_info.htc_addr,
215 packet->buf, padded_len,
216 HIF_WR_ASYNC_BLOCK_INC, packet);
217
218 return status;
219}
220
221static int htc_check_credits(struct htc_target *target,
222 struct htc_endpoint *ep, u8 *flags,
223 enum htc_endpoint_id eid, unsigned int len,
224 int *req_cred)
225{
226
227 *req_cred = (len > target->tgt_cred_sz) ?
228 DIV_ROUND_UP(len, target->tgt_cred_sz) : 1;
229
230 ath6kl_dbg(ATH6KL_DBG_HTC_SEND, "creds required:%d got:%d\n",
231 *req_cred, ep->cred_dist.credits);
232
233 if (ep->cred_dist.credits < *req_cred) {
234 if (eid == ENDPOINT_0)
235 return -EINVAL;
236
237 /* Seek more credits */
238 ep->cred_dist.seek_cred = *req_cred - ep->cred_dist.credits;
239
240 ath6kl_dbg(ATH6KL_DBG_HTC_SEND, "ctxt:0x%p dist:0x%p\n",
241 target->cred_dist_cntxt, &ep->cred_dist);
242
243 ath6k_seek_credits(target->cred_dist_cntxt, &ep->cred_dist);
244
245 ep->cred_dist.seek_cred = 0;
246
247 if (ep->cred_dist.credits < *req_cred) {
248 ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
249 "not enough credits for ep %d - leaving packet in queue\n",
250 eid);
251 return -EINVAL;
252 }
253 }
254
255 ep->cred_dist.credits -= *req_cred;
256 ep->ep_st.cred_cosumd += *req_cred;
257
258 /* When we are getting low on credits, ask for more */
259 if (ep->cred_dist.credits < ep->cred_dist.cred_per_msg) {
260 ep->cred_dist.seek_cred =
261 ep->cred_dist.cred_per_msg - ep->cred_dist.credits;
262
263 ath6kl_dbg(ATH6KL_DBG_HTC_SEND, "ctxt:0x%p dist:0x%p\n",
264 target->cred_dist_cntxt, &ep->cred_dist);
265
266 ath6k_seek_credits(target->cred_dist_cntxt, &ep->cred_dist);
267
268 /* see if we were successful in getting more */
269 if (ep->cred_dist.credits < ep->cred_dist.cred_per_msg) {
270 /* tell the target we need credits ASAP! */
271 *flags |= HTC_FLAGS_NEED_CREDIT_UPDATE;
272 ep->ep_st.cred_low_indicate += 1;
273 ath6kl_dbg(ATH6KL_DBG_HTC_SEND, "host needs credits\n");
274 }
275 }
276
277 return 0;
278}
279
Kalle Valodfa01042011-09-06 11:10:49 +0300280static void ath6kl_htc_tx_pkts_get(struct htc_target *target,
281 struct htc_endpoint *endpoint,
282 struct list_head *queue)
Kalle Valobdcd8172011-07-18 00:22:30 +0300283{
284 int req_cred;
285 u8 flags;
286 struct htc_packet *packet;
287 unsigned int len;
288
289 while (true) {
290
291 flags = 0;
292
293 if (list_empty(&endpoint->txq))
294 break;
295 packet = list_first_entry(&endpoint->txq, struct htc_packet,
296 list);
297
298 ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
299 "got head pkt:0x%p , queue depth: %d\n",
300 packet, get_queue_depth(&endpoint->txq));
301
Vasanthakumar Thiagarajan5be88242011-07-18 14:23:28 +0530302 len = CALC_TXRX_PADDED_LEN(target,
Kalle Valobdcd8172011-07-18 00:22:30 +0300303 packet->act_len + HTC_HDR_LENGTH);
304
305 if (htc_check_credits(target, endpoint, &flags,
306 packet->endpoint, len, &req_cred))
307 break;
308
309 /* now we can fully move onto caller's queue */
310 packet = list_first_entry(&endpoint->txq, struct htc_packet,
311 list);
312 list_move_tail(&packet->list, queue);
313
314 /* save the number of credits this packet consumed */
315 packet->info.tx.cred_used = req_cred;
316
317 /* all TX packets are handled asynchronously */
318 packet->completion = htc_tx_comp_handler;
319 packet->context = target;
320 endpoint->ep_st.tx_issued += 1;
321
322 /* save send flags */
323 packet->info.tx.flags = flags;
324 packet->info.tx.seqno = endpoint->seqno;
325 endpoint->seqno++;
326 }
327}
328
329/* See if the padded tx length falls on a credit boundary */
330static int htc_get_credit_padding(unsigned int cred_sz, int *len,
331 struct htc_endpoint *ep)
332{
333 int rem_cred, cred_pad;
334
335 rem_cred = *len % cred_sz;
336
337 /* No padding needed */
338 if (!rem_cred)
339 return 0;
340
341 if (!(ep->conn_flags & HTC_FLGS_TX_BNDL_PAD_EN))
342 return -1;
343
344 /*
345 * The transfer consumes a "partial" credit, this
346 * packet cannot be bundled unless we add
347 * additional "dummy" padding (max 255 bytes) to
348 * consume the entire credit.
349 */
350 cred_pad = *len < cred_sz ? (cred_sz - *len) : rem_cred;
351
352 if ((cred_pad > 0) && (cred_pad <= 255))
353 *len += cred_pad;
354 else
355 /* The amount of padding is too large, send as non-bundled */
356 return -1;
357
358 return cred_pad;
359}
360
Kalle Valodfa01042011-09-06 11:10:49 +0300361static int ath6kl_htc_tx_setup_scat_list(struct htc_target *target,
362 struct htc_endpoint *endpoint,
363 struct hif_scatter_req *scat_req,
364 int n_scat,
365 struct list_head *queue)
Kalle Valobdcd8172011-07-18 00:22:30 +0300366{
367 struct htc_packet *packet;
368 int i, len, rem_scat, cred_pad;
369 int status = 0;
370
Vasanthakumar Thiagarajan3b2f5e52011-07-18 14:23:27 +0530371 rem_scat = target->max_tx_bndl_sz;
Kalle Valobdcd8172011-07-18 00:22:30 +0300372
373 for (i = 0; i < n_scat; i++) {
374 scat_req->scat_list[i].packet = NULL;
375
376 if (list_empty(queue))
377 break;
378
379 packet = list_first_entry(queue, struct htc_packet, list);
Vasanthakumar Thiagarajan5be88242011-07-18 14:23:28 +0530380 len = CALC_TXRX_PADDED_LEN(target,
Kalle Valobdcd8172011-07-18 00:22:30 +0300381 packet->act_len + HTC_HDR_LENGTH);
382
383 cred_pad = htc_get_credit_padding(target->tgt_cred_sz,
384 &len, endpoint);
Vasanthakumar Thiagarajanf7a7e7a2011-08-22 20:40:22 +0530385 if (cred_pad < 0 || rem_scat < len) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300386 status = -ENOSPC;
387 break;
388 }
389
390 rem_scat -= len;
391 /* now remove it from the queue */
392 packet = list_first_entry(queue, struct htc_packet, list);
393 list_del(&packet->list);
394
395 scat_req->scat_list[i].packet = packet;
396 /* prepare packet and flag message as part of a send bundle */
Kalle Valodfa01042011-09-06 11:10:49 +0300397 ath6kl_htc_tx_prep_pkt(packet,
Kalle Valobdcd8172011-07-18 00:22:30 +0300398 packet->info.tx.flags | HTC_FLAGS_SEND_BUNDLE,
399 cred_pad, packet->info.tx.seqno);
Vasanthakumar Thiagarajan94e532d2011-08-22 20:14:31 +0530400 /* Make sure the buffer is 4-byte aligned */
Kalle Valodfa01042011-09-06 11:10:49 +0300401 ath6kl_htc_tx_buf_align(&packet->buf,
402 packet->act_len + HTC_HDR_LENGTH);
Kalle Valobdcd8172011-07-18 00:22:30 +0300403 scat_req->scat_list[i].buf = packet->buf;
404 scat_req->scat_list[i].len = len;
405
406 scat_req->len += len;
407 scat_req->scat_entries++;
408 ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
409 "%d, adding pkt : 0x%p len:%d (remaining space:%d)\n",
410 i, packet, len, rem_scat);
411 }
412
413 /* Roll back scatter setup in case of any failure */
Vasanthakumar Thiagarajanf7a7e7a2011-08-22 20:40:22 +0530414 if (scat_req->scat_entries < HTC_MIN_HTC_MSGS_TO_BUNDLE) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300415 for (i = scat_req->scat_entries - 1; i >= 0; i--) {
416 packet = scat_req->scat_list[i].packet;
417 if (packet) {
418 packet->buf += HTC_HDR_LENGTH;
419 list_add(&packet->list, queue);
420 }
421 }
Vasanthakumar Thiagarajanf7a7e7a2011-08-22 20:40:22 +0530422 return -EAGAIN;
Kalle Valobdcd8172011-07-18 00:22:30 +0300423 }
424
Vasanthakumar Thiagarajanf7a7e7a2011-08-22 20:40:22 +0530425 return status;
Kalle Valobdcd8172011-07-18 00:22:30 +0300426}
427
428/*
Kalle Valodfa01042011-09-06 11:10:49 +0300429 * Drain a queue and send as bundles this function may return without fully
430 * draining the queue when
Kalle Valobdcd8172011-07-18 00:22:30 +0300431 *
432 * 1. scatter resources are exhausted
433 * 2. a message that will consume a partial credit will stop the
434 * bundling process early
435 * 3. we drop below the minimum number of messages for a bundle
436 */
Kalle Valodfa01042011-09-06 11:10:49 +0300437static void ath6kl_htc_tx_bundle(struct htc_endpoint *endpoint,
438 struct list_head *queue,
439 int *sent_bundle, int *n_bundle_pkts)
Kalle Valobdcd8172011-07-18 00:22:30 +0300440{
441 struct htc_target *target = endpoint->target;
442 struct hif_scatter_req *scat_req = NULL;
Kalle Valobdcd8172011-07-18 00:22:30 +0300443 int n_scat, n_sent_bundle = 0, tot_pkts_bundle = 0;
Vasanthakumar Thiagarajanf7a7e7a2011-08-22 20:40:22 +0530444 int status;
Kalle Valobdcd8172011-07-18 00:22:30 +0300445
Kalle Valobdcd8172011-07-18 00:22:30 +0300446 while (true) {
Vasanthakumar Thiagarajanf7a7e7a2011-08-22 20:40:22 +0530447 status = 0;
Kalle Valobdcd8172011-07-18 00:22:30 +0300448 n_scat = get_queue_depth(queue);
449 n_scat = min(n_scat, target->msg_per_bndl_max);
450
451 if (n_scat < HTC_MIN_HTC_MSGS_TO_BUNDLE)
452 /* not enough to bundle */
453 break;
454
455 scat_req = hif_scatter_req_get(target->dev->ar);
456
457 if (!scat_req) {
458 /* no scatter resources */
459 ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
460 "no more scatter resources\n");
461 break;
462 }
463
464 ath6kl_dbg(ATH6KL_DBG_HTC_SEND, "pkts to scatter: %d\n",
465 n_scat);
466
467 scat_req->len = 0;
468 scat_req->scat_entries = 0;
469
Kalle Valodfa01042011-09-06 11:10:49 +0300470 status = ath6kl_htc_tx_setup_scat_list(target, endpoint,
471 scat_req, n_scat,
472 queue);
Vasanthakumar Thiagarajanf7a7e7a2011-08-22 20:40:22 +0530473 if (status == -EAGAIN) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300474 hif_scatter_req_add(target->dev->ar, scat_req);
475 break;
476 }
477
478 /* send path is always asynchronous */
479 scat_req->complete = htc_async_tx_scat_complete;
Kalle Valobdcd8172011-07-18 00:22:30 +0300480 n_sent_bundle++;
481 tot_pkts_bundle += scat_req->scat_entries;
482
483 ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
484 "send scatter total bytes: %d , entries: %d\n",
485 scat_req->len, scat_req->scat_entries);
486 ath6kldev_submit_scat_req(target->dev, scat_req, false);
Vasanthakumar Thiagarajanf7a7e7a2011-08-22 20:40:22 +0530487
488 if (status)
489 break;
Kalle Valobdcd8172011-07-18 00:22:30 +0300490 }
491
492 *sent_bundle = n_sent_bundle;
493 *n_bundle_pkts = tot_pkts_bundle;
Kalle Valodfa01042011-09-06 11:10:49 +0300494 ath6kl_dbg(ATH6KL_DBG_HTC_SEND, "%s (sent:%d)\n",
495 __func__, n_sent_bundle);
Kalle Valobdcd8172011-07-18 00:22:30 +0300496
497 return;
498}
499
Kalle Valodfa01042011-09-06 11:10:49 +0300500static void ath6kl_htc_tx_from_queue(struct htc_target *target,
501 struct htc_endpoint *endpoint)
Kalle Valobdcd8172011-07-18 00:22:30 +0300502{
503 struct list_head txq;
504 struct htc_packet *packet;
505 int bundle_sent;
506 int n_pkts_bundle;
507
508 spin_lock_bh(&target->tx_lock);
509
510 endpoint->tx_proc_cnt++;
511 if (endpoint->tx_proc_cnt > 1) {
512 endpoint->tx_proc_cnt--;
513 spin_unlock_bh(&target->tx_lock);
514 ath6kl_dbg(ATH6KL_DBG_HTC_SEND, "htc_try_send (busy)\n");
515 return;
516 }
517
518 /*
519 * drain the endpoint TX queue for transmission as long
520 * as we have enough credits.
521 */
522 INIT_LIST_HEAD(&txq);
523
524 while (true) {
525
526 if (list_empty(&endpoint->txq))
527 break;
528
Kalle Valodfa01042011-09-06 11:10:49 +0300529 ath6kl_htc_tx_pkts_get(target, endpoint, &txq);
Kalle Valobdcd8172011-07-18 00:22:30 +0300530
531 if (list_empty(&txq))
532 break;
533
534 spin_unlock_bh(&target->tx_lock);
535
536 bundle_sent = 0;
537 n_pkts_bundle = 0;
538
539 while (true) {
540 /* try to send a bundle on each pass */
541 if ((target->tx_bndl_enable) &&
542 (get_queue_depth(&txq) >=
543 HTC_MIN_HTC_MSGS_TO_BUNDLE)) {
544 int temp1 = 0, temp2 = 0;
545
Kalle Valodfa01042011-09-06 11:10:49 +0300546 ath6kl_htc_tx_bundle(endpoint, &txq,
547 &temp1, &temp2);
Kalle Valobdcd8172011-07-18 00:22:30 +0300548 bundle_sent += temp1;
549 n_pkts_bundle += temp2;
550 }
551
552 if (list_empty(&txq))
553 break;
554
555 packet = list_first_entry(&txq, struct htc_packet,
556 list);
557 list_del(&packet->list);
558
Kalle Valodfa01042011-09-06 11:10:49 +0300559 ath6kl_htc_tx_prep_pkt(packet, packet->info.tx.flags,
560 0, packet->info.tx.seqno);
561 ath6kl_htc_tx_issue(target, packet);
Kalle Valobdcd8172011-07-18 00:22:30 +0300562 }
563
564 spin_lock_bh(&target->tx_lock);
565
566 endpoint->ep_st.tx_bundles += bundle_sent;
567 endpoint->ep_st.tx_pkt_bundled += n_pkts_bundle;
568 }
569
570 endpoint->tx_proc_cnt = 0;
571 spin_unlock_bh(&target->tx_lock);
572}
573
Kalle Valodfa01042011-09-06 11:10:49 +0300574static bool ath6kl_htc_tx_try(struct htc_target *target,
575 struct htc_endpoint *endpoint,
576 struct htc_packet *tx_pkt)
Kalle Valobdcd8172011-07-18 00:22:30 +0300577{
578 struct htc_ep_callbacks ep_cb;
579 int txq_depth;
580 bool overflow = false;
581
582 ep_cb = endpoint->ep_cb;
583
584 spin_lock_bh(&target->tx_lock);
585 txq_depth = get_queue_depth(&endpoint->txq);
586 spin_unlock_bh(&target->tx_lock);
587
588 if (txq_depth >= endpoint->max_txq_depth)
589 overflow = true;
590
591 if (overflow)
592 ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
593 "ep %d, tx queue will overflow :%d , tx depth:%d, max:%d\n",
594 endpoint->eid, overflow, txq_depth,
595 endpoint->max_txq_depth);
596
597 if (overflow && ep_cb.tx_full) {
598 ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
599 "indicating overflowed tx packet: 0x%p\n", tx_pkt);
600
601 if (ep_cb.tx_full(endpoint->target, tx_pkt) ==
602 HTC_SEND_FULL_DROP) {
603 endpoint->ep_st.tx_dropped += 1;
604 return false;
605 }
606 }
607
608 spin_lock_bh(&target->tx_lock);
609 list_add_tail(&tx_pkt->list, &endpoint->txq);
610 spin_unlock_bh(&target->tx_lock);
611
Kalle Valodfa01042011-09-06 11:10:49 +0300612 ath6kl_htc_tx_from_queue(target, endpoint);
Kalle Valobdcd8172011-07-18 00:22:30 +0300613
614 return true;
615}
616
617static void htc_chk_ep_txq(struct htc_target *target)
618{
619 struct htc_endpoint *endpoint;
620 struct htc_endpoint_credit_dist *cred_dist;
621
622 /*
623 * Run through the credit distribution list to see if there are
624 * packets queued. NOTE: no locks need to be taken since the
625 * distribution list is not dynamic (cannot be re-ordered) and we
626 * are not modifying any state.
627 */
628 list_for_each_entry(cred_dist, &target->cred_dist_list, list) {
629 endpoint = (struct htc_endpoint *)cred_dist->htc_rsvd;
630
631 spin_lock_bh(&target->tx_lock);
632 if (!list_empty(&endpoint->txq)) {
633 ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
634 "ep %d has %d credits and %d packets in tx queue\n",
635 cred_dist->endpoint,
636 endpoint->cred_dist.credits,
637 get_queue_depth(&endpoint->txq));
638 spin_unlock_bh(&target->tx_lock);
639 /*
640 * Try to start the stalled queue, this list is
641 * ordered by priority. If there are credits
642 * available the highest priority queue will get a
643 * chance to reclaim credits from lower priority
644 * ones.
645 */
Kalle Valodfa01042011-09-06 11:10:49 +0300646 ath6kl_htc_tx_from_queue(target, endpoint);
Kalle Valobdcd8172011-07-18 00:22:30 +0300647 spin_lock_bh(&target->tx_lock);
648 }
649 spin_unlock_bh(&target->tx_lock);
650 }
651}
652
653static int htc_setup_tx_complete(struct htc_target *target)
654{
655 struct htc_packet *send_pkt = NULL;
656 int status;
657
658 send_pkt = htc_get_control_buf(target, true);
659
660 if (!send_pkt)
661 return -ENOMEM;
662
663 if (target->htc_tgt_ver >= HTC_VERSION_2P1) {
664 struct htc_setup_comp_ext_msg *setup_comp_ext;
665 u32 flags = 0;
666
667 setup_comp_ext =
668 (struct htc_setup_comp_ext_msg *)send_pkt->buf;
669 memset(setup_comp_ext, 0, sizeof(*setup_comp_ext));
670 setup_comp_ext->msg_id =
671 cpu_to_le16(HTC_MSG_SETUP_COMPLETE_EX_ID);
672
673 if (target->msg_per_bndl_max > 0) {
674 /* Indicate HTC bundling to the target */
675 flags |= HTC_SETUP_COMP_FLG_RX_BNDL_EN;
676 setup_comp_ext->msg_per_rxbndl =
677 target->msg_per_bndl_max;
678 }
679
680 memcpy(&setup_comp_ext->flags, &flags,
681 sizeof(setup_comp_ext->flags));
682 set_htc_pkt_info(send_pkt, NULL, (u8 *) setup_comp_ext,
683 sizeof(struct htc_setup_comp_ext_msg),
684 ENDPOINT_0, HTC_SERVICE_TX_PACKET_TAG);
685
686 } else {
687 struct htc_setup_comp_msg *setup_comp;
688 setup_comp = (struct htc_setup_comp_msg *)send_pkt->buf;
689 memset(setup_comp, 0, sizeof(struct htc_setup_comp_msg));
690 setup_comp->msg_id = cpu_to_le16(HTC_MSG_SETUP_COMPLETE_ID);
691 set_htc_pkt_info(send_pkt, NULL, (u8 *) setup_comp,
692 sizeof(struct htc_setup_comp_msg),
693 ENDPOINT_0, HTC_SERVICE_TX_PACKET_TAG);
694 }
695
696 /* we want synchronous operation */
697 send_pkt->completion = NULL;
Kalle Valodfa01042011-09-06 11:10:49 +0300698 ath6kl_htc_tx_prep_pkt(send_pkt, 0, 0, 0);
699 status = ath6kl_htc_tx_issue(target, send_pkt);
Kalle Valobdcd8172011-07-18 00:22:30 +0300700
701 if (send_pkt != NULL)
702 htc_reclaim_txctrl_buf(target, send_pkt);
703
704 return status;
705}
706
Kalle Vaload226ec2011-08-10 09:49:12 +0300707void ath6kl_htc_set_credit_dist(struct htc_target *target,
708 struct htc_credit_state_info *cred_dist_cntxt,
709 u16 srvc_pri_order[], int list_len)
Kalle Valobdcd8172011-07-18 00:22:30 +0300710{
711 struct htc_endpoint *endpoint;
712 int i, ep;
713
714 target->cred_dist_cntxt = cred_dist_cntxt;
715
716 list_add_tail(&target->endpoint[ENDPOINT_0].cred_dist.list,
717 &target->cred_dist_list);
718
719 for (i = 0; i < list_len; i++) {
720 for (ep = ENDPOINT_1; ep < ENDPOINT_MAX; ep++) {
721 endpoint = &target->endpoint[ep];
722 if (endpoint->svc_id == srvc_pri_order[i]) {
723 list_add_tail(&endpoint->cred_dist.list,
724 &target->cred_dist_list);
725 break;
726 }
727 }
728 if (ep >= ENDPOINT_MAX) {
729 WARN_ON(1);
730 return;
731 }
732 }
733}
734
Kalle Vaload226ec2011-08-10 09:49:12 +0300735int ath6kl_htc_tx(struct htc_target *target, struct htc_packet *packet)
Kalle Valobdcd8172011-07-18 00:22:30 +0300736{
737 struct htc_endpoint *endpoint;
738 struct list_head queue;
739
740 ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
741 "htc_tx: ep id: %d, buf: 0x%p, len: %d\n",
742 packet->endpoint, packet->buf, packet->act_len);
743
744 if (packet->endpoint >= ENDPOINT_MAX) {
745 WARN_ON(1);
746 return -EINVAL;
747 }
748
749 endpoint = &target->endpoint[packet->endpoint];
750
Kalle Valodfa01042011-09-06 11:10:49 +0300751 if (!ath6kl_htc_tx_try(target, endpoint, packet)) {
Kalle Valobdcd8172011-07-18 00:22:30 +0300752 packet->status = (target->htc_flags & HTC_OP_STATE_STOPPING) ?
753 -ECANCELED : -ENOSPC;
754 INIT_LIST_HEAD(&queue);
755 list_add(&packet->list, &queue);
756 htc_tx_complete(endpoint, &queue);
757 }
758
759 return 0;
760}
761
762/* flush endpoint TX queue */
Kalle Vaload226ec2011-08-10 09:49:12 +0300763void ath6kl_htc_flush_txep(struct htc_target *target,
764 enum htc_endpoint_id eid, u16 tag)
Kalle Valobdcd8172011-07-18 00:22:30 +0300765{
766 struct htc_packet *packet, *tmp_pkt;
767 struct list_head discard_q, container;
768 struct htc_endpoint *endpoint = &target->endpoint[eid];
769
770 if (!endpoint->svc_id) {
771 WARN_ON(1);
772 return;
773 }
774
775 /* initialize the discard queue */
776 INIT_LIST_HEAD(&discard_q);
777
778 spin_lock_bh(&target->tx_lock);
779
780 list_for_each_entry_safe(packet, tmp_pkt, &endpoint->txq, list) {
781 if ((tag == HTC_TX_PACKET_TAG_ALL) ||
782 (tag == packet->info.tx.tag))
783 list_move_tail(&packet->list, &discard_q);
784 }
785
786 spin_unlock_bh(&target->tx_lock);
787
788 list_for_each_entry_safe(packet, tmp_pkt, &discard_q, list) {
789 packet->status = -ECANCELED;
790 list_del(&packet->list);
791 ath6kl_dbg(ATH6KL_DBG_TRC,
792 "flushing tx pkt:0x%p, len:%d, ep:%d tag:0x%X\n",
793 packet, packet->act_len,
794 packet->endpoint, packet->info.tx.tag);
795
796 INIT_LIST_HEAD(&container);
797 list_add_tail(&packet->list, &container);
798 htc_tx_complete(endpoint, &container);
799 }
800
801}
802
Kalle Vaload226ec2011-08-10 09:49:12 +0300803static void ath6kl_htc_flush_txep_all(struct htc_target *target)
Kalle Valobdcd8172011-07-18 00:22:30 +0300804{
805 struct htc_endpoint *endpoint;
806 int i;
807
808 dump_cred_dist_stats(target);
809
810 for (i = ENDPOINT_0; i < ENDPOINT_MAX; i++) {
811 endpoint = &target->endpoint[i];
812 if (endpoint->svc_id == 0)
813 /* not in use.. */
814 continue;
Kalle Vaload226ec2011-08-10 09:49:12 +0300815 ath6kl_htc_flush_txep(target, i, HTC_TX_PACKET_TAG_ALL);
Kalle Valobdcd8172011-07-18 00:22:30 +0300816 }
817}
818
Kalle Vaload226ec2011-08-10 09:49:12 +0300819void ath6kl_htc_indicate_activity_change(struct htc_target *target,
820 enum htc_endpoint_id eid, bool active)
Kalle Valobdcd8172011-07-18 00:22:30 +0300821{
822 struct htc_endpoint *endpoint = &target->endpoint[eid];
823 bool dist = false;
824
825 if (endpoint->svc_id == 0) {
826 WARN_ON(1);
827 return;
828 }
829
830 spin_lock_bh(&target->tx_lock);
831
832 if (active) {
833 if (!(endpoint->cred_dist.dist_flags & HTC_EP_ACTIVE)) {
834 endpoint->cred_dist.dist_flags |= HTC_EP_ACTIVE;
835 dist = true;
836 }
837 } else {
838 if (endpoint->cred_dist.dist_flags & HTC_EP_ACTIVE) {
839 endpoint->cred_dist.dist_flags &= ~HTC_EP_ACTIVE;
840 dist = true;
841 }
842 }
843
844 if (dist) {
845 endpoint->cred_dist.txq_depth =
846 get_queue_depth(&endpoint->txq);
847
848 ath6kl_dbg(ATH6KL_DBG_HTC_SEND, "ctxt:0x%p dist:0x%p\n",
849 target->cred_dist_cntxt, &target->cred_dist_list);
850
851 ath6k_credit_distribute(target->cred_dist_cntxt,
852 &target->cred_dist_list,
853 HTC_CREDIT_DIST_ACTIVITY_CHANGE);
854 }
855
856 spin_unlock_bh(&target->tx_lock);
857
858 if (dist && !active)
859 htc_chk_ep_txq(target);
860}
861
862/* HTC Rx */
863
Kalle Valo689def92011-09-06 11:10:49 +0300864static inline void ath6kl_htc_rx_update_stats(struct htc_endpoint *endpoint,
865 int n_look_ahds)
Kalle Valobdcd8172011-07-18 00:22:30 +0300866{
867 endpoint->ep_st.rx_pkts++;
868 if (n_look_ahds == 1)
869 endpoint->ep_st.rx_lkahds++;
870 else if (n_look_ahds > 1)
871 endpoint->ep_st.rx_bundle_lkahd++;
872}
873
874static inline bool htc_valid_rx_frame_len(struct htc_target *target,
875 enum htc_endpoint_id eid, int len)
876{
877 return (eid == target->dev->ar->ctrl_ep) ?
878 len <= ATH6KL_BUFFER_SIZE : len <= ATH6KL_AMSDU_BUFFER_SIZE;
879}
880
881static int htc_add_rxbuf(struct htc_target *target, struct htc_packet *packet)
882{
883 struct list_head queue;
884
885 INIT_LIST_HEAD(&queue);
886 list_add_tail(&packet->list, &queue);
Kalle Vaload226ec2011-08-10 09:49:12 +0300887 return ath6kl_htc_add_rxbuf_multiple(target, &queue);
Kalle Valobdcd8172011-07-18 00:22:30 +0300888}
889
890static void htc_reclaim_rxbuf(struct htc_target *target,
891 struct htc_packet *packet,
892 struct htc_endpoint *ep)
893{
894 if (packet->info.rx.rx_flags & HTC_RX_PKT_NO_RECYCLE) {
895 htc_rxpkt_reset(packet);
896 packet->status = -ECANCELED;
897 ep->ep_cb.rx(ep->target, packet);
898 } else {
899 htc_rxpkt_reset(packet);
900 htc_add_rxbuf((void *)(target), packet);
901 }
902}
903
904static void reclaim_rx_ctrl_buf(struct htc_target *target,
905 struct htc_packet *packet)
906{
907 spin_lock_bh(&target->htc_lock);
908 list_add_tail(&packet->list, &target->free_ctrl_rxbuf);
909 spin_unlock_bh(&target->htc_lock);
910}
911
Kalle Valo689def92011-09-06 11:10:49 +0300912static int ath6kl_htc_rx_packet(struct htc_target *target,
913 struct htc_packet *packet,
914 u32 rx_len)
Kalle Valobdcd8172011-07-18 00:22:30 +0300915{
916 struct ath6kl_device *dev = target->dev;
917 u32 padded_len;
918 int status;
919
Vasanthakumar Thiagarajan5be88242011-07-18 14:23:28 +0530920 padded_len = CALC_TXRX_PADDED_LEN(target, rx_len);
Kalle Valobdcd8172011-07-18 00:22:30 +0300921
922 if (padded_len > packet->buf_len) {
923 ath6kl_err("not enough receive space for packet - padlen:%d recvlen:%d bufferlen:%d\n",
924 padded_len, rx_len, packet->buf_len);
925 return -ENOMEM;
926 }
927
928 ath6kl_dbg(ATH6KL_DBG_HTC_RECV,
929 "dev_rx_pkt (0x%p : hdr:0x%X) padded len: %d mbox:0x%X (mode:%s)\n",
930 packet, packet->info.rx.exp_hdr,
931 padded_len, dev->ar->mbox_info.htc_addr, "sync");
932
933 status = hif_read_write_sync(dev->ar,
934 dev->ar->mbox_info.htc_addr,
935 packet->buf, padded_len,
936 HIF_RD_SYNC_BLOCK_FIX);
937
938 packet->status = status;
939
940 return status;
941}
942
943/*
944 * optimization for recv packets, we can indicate a
945 * "hint" that there are more single-packets to fetch
946 * on this endpoint.
947 */
Kalle Valo689def92011-09-06 11:10:49 +0300948static void ath6kl_htc_rx_set_indicate(u32 lk_ahd,
949 struct htc_endpoint *endpoint,
950 struct htc_packet *packet)
Kalle Valobdcd8172011-07-18 00:22:30 +0300951{
952 struct htc_frame_hdr *htc_hdr = (struct htc_frame_hdr *)&lk_ahd;
953
954 if (htc_hdr->eid == packet->endpoint) {
955 if (!list_empty(&endpoint->rx_bufq))
956 packet->info.rx.indicat_flags |=
957 HTC_RX_FLAGS_INDICATE_MORE_PKTS;
958 }
959}
960
Kalle Valo689def92011-09-06 11:10:49 +0300961static void ath6kl_htc_rx_chk_water_mark(struct htc_endpoint *endpoint)
Kalle Valobdcd8172011-07-18 00:22:30 +0300962{
963 struct htc_ep_callbacks ep_cb = endpoint->ep_cb;
964
965 if (ep_cb.rx_refill_thresh > 0) {
966 spin_lock_bh(&endpoint->target->rx_lock);
967 if (get_queue_depth(&endpoint->rx_bufq)
968 < ep_cb.rx_refill_thresh) {
969 spin_unlock_bh(&endpoint->target->rx_lock);
970 ep_cb.rx_refill(endpoint->target, endpoint->eid);
971 return;
972 }
973 spin_unlock_bh(&endpoint->target->rx_lock);
974 }
975}
976
977/* This function is called with rx_lock held */
Kalle Valo689def92011-09-06 11:10:49 +0300978static int ath6kl_htc_rx_setup(struct htc_target *target,
979 struct htc_endpoint *ep,
980 u32 *lk_ahds, struct list_head *queue, int n_msg)
Kalle Valobdcd8172011-07-18 00:22:30 +0300981{
982 struct htc_packet *packet;
983 /* FIXME: type of lk_ahds can't be right */
984 struct htc_frame_hdr *htc_hdr = (struct htc_frame_hdr *)lk_ahds;
985 struct htc_ep_callbacks ep_cb;
986 int status = 0, j, full_len;
987 bool no_recycle;
988
Vasanthakumar Thiagarajan5be88242011-07-18 14:23:28 +0530989 full_len = CALC_TXRX_PADDED_LEN(target,
Kalle Valobdcd8172011-07-18 00:22:30 +0300990 le16_to_cpu(htc_hdr->payld_len) +
991 sizeof(*htc_hdr));
992
993 if (!htc_valid_rx_frame_len(target, ep->eid, full_len)) {
994 ath6kl_warn("Rx buffer requested with invalid length\n");
995 return -EINVAL;
996 }
997
998 ep_cb = ep->ep_cb;
999 for (j = 0; j < n_msg; j++) {
1000
1001 /*
1002 * Reset flag, any packets allocated using the
1003 * rx_alloc() API cannot be recycled on
1004 * cleanup,they must be explicitly returned.
1005 */
1006 no_recycle = false;
1007
1008 if (ep_cb.rx_allocthresh &&
1009 (full_len > ep_cb.rx_alloc_thresh)) {
1010 ep->ep_st.rx_alloc_thresh_hit += 1;
1011 ep->ep_st.rxalloc_thresh_byte +=
1012 le16_to_cpu(htc_hdr->payld_len);
1013
1014 spin_unlock_bh(&target->rx_lock);
1015 no_recycle = true;
1016
1017 packet = ep_cb.rx_allocthresh(ep->target, ep->eid,
1018 full_len);
1019 spin_lock_bh(&target->rx_lock);
1020 } else {
1021 /* refill handler is being used */
1022 if (list_empty(&ep->rx_bufq)) {
1023 if (ep_cb.rx_refill) {
1024 spin_unlock_bh(&target->rx_lock);
1025 ep_cb.rx_refill(ep->target, ep->eid);
1026 spin_lock_bh(&target->rx_lock);
1027 }
1028 }
1029
1030 if (list_empty(&ep->rx_bufq))
1031 packet = NULL;
1032 else {
1033 packet = list_first_entry(&ep->rx_bufq,
1034 struct htc_packet, list);
1035 list_del(&packet->list);
1036 }
1037 }
1038
1039 if (!packet) {
1040 target->rx_st_flags |= HTC_RECV_WAIT_BUFFERS;
1041 target->ep_waiting = ep->eid;
1042 return -ENOSPC;
1043 }
1044
1045 /* clear flags */
1046 packet->info.rx.rx_flags = 0;
1047 packet->info.rx.indicat_flags = 0;
1048 packet->status = 0;
1049
1050 if (no_recycle)
1051 /*
1052 * flag that these packets cannot be
1053 * recycled, they have to be returned to
1054 * the user
1055 */
1056 packet->info.rx.rx_flags |= HTC_RX_PKT_NO_RECYCLE;
1057
1058 /* Caller needs to free this upon any failure */
1059 list_add_tail(&packet->list, queue);
1060
1061 if (target->htc_flags & HTC_OP_STATE_STOPPING) {
1062 status = -ECANCELED;
1063 break;
1064 }
1065
1066 if (j) {
1067 packet->info.rx.rx_flags |= HTC_RX_PKT_REFRESH_HDR;
1068 packet->info.rx.exp_hdr = 0xFFFFFFFF;
1069 } else
1070 /* set expected look ahead */
1071 packet->info.rx.exp_hdr = *lk_ahds;
1072
1073 packet->act_len = le16_to_cpu(htc_hdr->payld_len) +
1074 HTC_HDR_LENGTH;
1075 }
1076
1077 return status;
1078}
1079
Kalle Valo689def92011-09-06 11:10:49 +03001080static int ath6kl_htc_rx_alloc(struct htc_target *target,
1081 u32 lk_ahds[], int msg,
1082 struct htc_endpoint *endpoint,
1083 struct list_head *queue)
Kalle Valobdcd8172011-07-18 00:22:30 +03001084{
1085 int status = 0;
1086 struct htc_packet *packet, *tmp_pkt;
1087 struct htc_frame_hdr *htc_hdr;
1088 int i, n_msg;
1089
1090 spin_lock_bh(&target->rx_lock);
1091
1092 for (i = 0; i < msg; i++) {
1093
1094 htc_hdr = (struct htc_frame_hdr *)&lk_ahds[i];
1095
1096 if (htc_hdr->eid >= ENDPOINT_MAX) {
1097 ath6kl_err("invalid ep in look-ahead: %d\n",
1098 htc_hdr->eid);
1099 status = -ENOMEM;
1100 break;
1101 }
1102
1103 if (htc_hdr->eid != endpoint->eid) {
1104 ath6kl_err("invalid ep in look-ahead: %d should be : %d (index:%d)\n",
1105 htc_hdr->eid, endpoint->eid, i);
1106 status = -ENOMEM;
1107 break;
1108 }
1109
1110 if (le16_to_cpu(htc_hdr->payld_len) > HTC_MAX_PAYLOAD_LENGTH) {
1111 ath6kl_err("payload len %d exceeds max htc : %d !\n",
1112 htc_hdr->payld_len,
1113 (u32) HTC_MAX_PAYLOAD_LENGTH);
1114 status = -ENOMEM;
1115 break;
1116 }
1117
1118 if (endpoint->svc_id == 0) {
1119 ath6kl_err("ep %d is not connected !\n", htc_hdr->eid);
1120 status = -ENOMEM;
1121 break;
1122 }
1123
1124 if (htc_hdr->flags & HTC_FLG_RX_BNDL_CNT) {
1125 /*
1126 * HTC header indicates that every packet to follow
1127 * has the same padded length so that it can be
1128 * optimally fetched as a full bundle.
1129 */
1130 n_msg = (htc_hdr->flags & HTC_FLG_RX_BNDL_CNT) >>
1131 HTC_FLG_RX_BNDL_CNT_S;
1132
1133 /* the count doesn't include the starter frame */
1134 n_msg++;
1135 if (n_msg > target->msg_per_bndl_max) {
1136 status = -ENOMEM;
1137 break;
1138 }
1139
1140 endpoint->ep_st.rx_bundle_from_hdr += 1;
1141 ath6kl_dbg(ATH6KL_DBG_HTC_RECV,
1142 "htc hdr indicates :%d msg can be fetched as a bundle\n",
1143 n_msg);
1144 } else
1145 /* HTC header only indicates 1 message to fetch */
1146 n_msg = 1;
1147
1148 /* Setup packet buffers for each message */
Kalle Valo689def92011-09-06 11:10:49 +03001149 status = ath6kl_htc_rx_setup(target, endpoint, &lk_ahds[i],
1150 queue, n_msg);
Kalle Valobdcd8172011-07-18 00:22:30 +03001151
1152 /*
1153 * This is due to unavailabilty of buffers to rx entire data.
1154 * Return no error so that free buffers from queue can be used
1155 * to receive partial data.
1156 */
1157 if (status == -ENOSPC) {
1158 spin_unlock_bh(&target->rx_lock);
1159 return 0;
1160 }
1161
1162 if (status)
1163 break;
1164 }
1165
1166 spin_unlock_bh(&target->rx_lock);
1167
1168 if (status) {
1169 list_for_each_entry_safe(packet, tmp_pkt, queue, list) {
1170 list_del(&packet->list);
1171 htc_reclaim_rxbuf(target, packet,
1172 &target->endpoint[packet->endpoint]);
1173 }
1174 }
1175
1176 return status;
1177}
1178
1179static void htc_ctrl_rx(struct htc_target *context, struct htc_packet *packets)
1180{
1181 if (packets->endpoint != ENDPOINT_0) {
1182 WARN_ON(1);
1183 return;
1184 }
1185
1186 if (packets->status == -ECANCELED) {
1187 reclaim_rx_ctrl_buf(context, packets);
1188 return;
1189 }
1190
1191 if (packets->act_len > 0) {
1192 ath6kl_err("htc_ctrl_rx, got message with len:%zu\n",
1193 packets->act_len + HTC_HDR_LENGTH);
1194
1195 ath6kl_dbg_dump(ATH6KL_DBG_RAW_BYTES,
1196 "Unexpected ENDPOINT 0 Message",
1197 packets->buf - HTC_HDR_LENGTH,
1198 packets->act_len + HTC_HDR_LENGTH);
1199 }
1200
1201 htc_reclaim_rxbuf(context, packets, &context->endpoint[0]);
1202}
1203
1204static void htc_proc_cred_rpt(struct htc_target *target,
1205 struct htc_credit_report *rpt,
1206 int n_entries,
1207 enum htc_endpoint_id from_ep)
1208{
1209 struct htc_endpoint *endpoint;
1210 int tot_credits = 0, i;
1211 bool dist = false;
1212
1213 ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
1214 "htc_proc_cred_rpt, credit report entries:%d\n", n_entries);
1215
1216 spin_lock_bh(&target->tx_lock);
1217
1218 for (i = 0; i < n_entries; i++, rpt++) {
1219 if (rpt->eid >= ENDPOINT_MAX) {
1220 WARN_ON(1);
1221 spin_unlock_bh(&target->tx_lock);
1222 return;
1223 }
1224
1225 endpoint = &target->endpoint[rpt->eid];
1226
1227 ath6kl_dbg(ATH6KL_DBG_HTC_SEND, " ep %d got %d credits\n",
1228 rpt->eid, rpt->credits);
1229
1230 endpoint->ep_st.tx_cred_rpt += 1;
1231 endpoint->ep_st.cred_retnd += rpt->credits;
1232
1233 if (from_ep == rpt->eid) {
1234 /*
1235 * This credit report arrived on the same endpoint
1236 * indicating it arrived in an RX packet.
1237 */
1238 endpoint->ep_st.cred_from_rx += rpt->credits;
1239 endpoint->ep_st.cred_rpt_from_rx += 1;
1240 } else if (from_ep == ENDPOINT_0) {
1241 /* credit arrived on endpoint 0 as a NULL message */
1242 endpoint->ep_st.cred_from_ep0 += rpt->credits;
1243 endpoint->ep_st.cred_rpt_ep0 += 1;
1244 } else {
1245 endpoint->ep_st.cred_from_other += rpt->credits;
1246 endpoint->ep_st.cred_rpt_from_other += 1;
1247 }
1248
Raja Mani5ba3ee42011-07-19 19:27:31 +05301249 if (rpt->eid == ENDPOINT_0)
Kalle Valobdcd8172011-07-18 00:22:30 +03001250 /* always give endpoint 0 credits back */
1251 endpoint->cred_dist.credits += rpt->credits;
1252 else {
1253 endpoint->cred_dist.cred_to_dist += rpt->credits;
1254 dist = true;
1255 }
1256
1257 /*
1258 * Refresh tx depth for distribution function that will
1259 * recover these credits NOTE: this is only valid when
1260 * there are credits to recover!
1261 */
1262 endpoint->cred_dist.txq_depth =
1263 get_queue_depth(&endpoint->txq);
1264
1265 tot_credits += rpt->credits;
1266 }
1267
1268 ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
1269 "report indicated %d credits to distribute\n",
1270 tot_credits);
1271
1272 if (dist) {
1273 /*
1274 * This was a credit return based on a completed send
1275 * operations note, this is done with the lock held
1276 */
1277 ath6kl_dbg(ATH6KL_DBG_HTC_SEND, "ctxt:0x%p dist:0x%p\n",
1278 target->cred_dist_cntxt, &target->cred_dist_list);
1279
1280 ath6k_credit_distribute(target->cred_dist_cntxt,
1281 &target->cred_dist_list,
1282 HTC_CREDIT_DIST_SEND_COMPLETE);
1283 }
1284
1285 spin_unlock_bh(&target->tx_lock);
1286
1287 if (tot_credits)
1288 htc_chk_ep_txq(target);
1289}
1290
1291static int htc_parse_trailer(struct htc_target *target,
1292 struct htc_record_hdr *record,
1293 u8 *record_buf, u32 *next_lk_ahds,
1294 enum htc_endpoint_id endpoint,
1295 int *n_lk_ahds)
1296{
1297 struct htc_bundle_lkahd_rpt *bundle_lkahd_rpt;
1298 struct htc_lookahead_report *lk_ahd;
1299 int len;
1300
1301 switch (record->rec_id) {
1302 case HTC_RECORD_CREDITS:
1303 len = record->len / sizeof(struct htc_credit_report);
1304 if (!len) {
1305 WARN_ON(1);
1306 return -EINVAL;
1307 }
1308
1309 htc_proc_cred_rpt(target,
1310 (struct htc_credit_report *) record_buf,
1311 len, endpoint);
1312 break;
1313 case HTC_RECORD_LOOKAHEAD:
1314 len = record->len / sizeof(*lk_ahd);
1315 if (!len) {
1316 WARN_ON(1);
1317 return -EINVAL;
1318 }
1319
1320 lk_ahd = (struct htc_lookahead_report *) record_buf;
1321 if ((lk_ahd->pre_valid == ((~lk_ahd->post_valid) & 0xFF))
1322 && next_lk_ahds) {
1323
1324 ath6kl_dbg(ATH6KL_DBG_HTC_RECV,
1325 "lk_ahd report found (pre valid:0x%X, post valid:0x%X)\n",
1326 lk_ahd->pre_valid, lk_ahd->post_valid);
1327
1328 /* look ahead bytes are valid, copy them over */
1329 memcpy((u8 *)&next_lk_ahds[0], lk_ahd->lk_ahd, 4);
1330
1331 ath6kl_dbg_dump(ATH6KL_DBG_RAW_BYTES, "Next Look Ahead",
1332 next_lk_ahds, 4);
1333
1334 *n_lk_ahds = 1;
1335 }
1336 break;
1337 case HTC_RECORD_LOOKAHEAD_BUNDLE:
1338 len = record->len / sizeof(*bundle_lkahd_rpt);
1339 if (!len || (len > HTC_HOST_MAX_MSG_PER_BUNDLE)) {
1340 WARN_ON(1);
1341 return -EINVAL;
1342 }
1343
1344 if (next_lk_ahds) {
1345 int i;
1346
1347 bundle_lkahd_rpt =
1348 (struct htc_bundle_lkahd_rpt *) record_buf;
1349
1350 ath6kl_dbg_dump(ATH6KL_DBG_RAW_BYTES, "Bundle lk_ahd",
1351 record_buf, record->len);
1352
1353 for (i = 0; i < len; i++) {
1354 memcpy((u8 *)&next_lk_ahds[i],
1355 bundle_lkahd_rpt->lk_ahd, 4);
1356 bundle_lkahd_rpt++;
1357 }
1358
1359 *n_lk_ahds = i;
1360 }
1361 break;
1362 default:
1363 ath6kl_err("unhandled record: id:%d len:%d\n",
1364 record->rec_id, record->len);
1365 break;
1366 }
1367
1368 return 0;
1369
1370}
1371
1372static int htc_proc_trailer(struct htc_target *target,
1373 u8 *buf, int len, u32 *next_lk_ahds,
1374 int *n_lk_ahds, enum htc_endpoint_id endpoint)
1375{
1376 struct htc_record_hdr *record;
1377 int orig_len;
1378 int status;
1379 u8 *record_buf;
1380 u8 *orig_buf;
1381
1382 ath6kl_dbg(ATH6KL_DBG_HTC_RECV, "+htc_proc_trailer (len:%d)\n", len);
1383
1384 ath6kl_dbg_dump(ATH6KL_DBG_RAW_BYTES, "Recv Trailer", buf, len);
1385
1386 orig_buf = buf;
1387 orig_len = len;
1388 status = 0;
1389
1390 while (len > 0) {
1391
1392 if (len < sizeof(struct htc_record_hdr)) {
1393 status = -ENOMEM;
1394 break;
1395 }
1396 /* these are byte aligned structs */
1397 record = (struct htc_record_hdr *) buf;
1398 len -= sizeof(struct htc_record_hdr);
1399 buf += sizeof(struct htc_record_hdr);
1400
1401 if (record->len > len) {
1402 ath6kl_err("invalid record len: %d (id:%d) buf has: %d bytes left\n",
1403 record->len, record->rec_id, len);
1404 status = -ENOMEM;
1405 break;
1406 }
1407 record_buf = buf;
1408
1409 status = htc_parse_trailer(target, record, record_buf,
1410 next_lk_ahds, endpoint, n_lk_ahds);
1411
1412 if (status)
1413 break;
1414
1415 /* advance buffer past this record for next time around */
1416 buf += record->len;
1417 len -= record->len;
1418 }
1419
Raja Mani2588f552011-07-19 19:27:30 +05301420 if (status)
1421 ath6kl_dbg_dump(ATH6KL_DBG_RAW_BYTES, "BAD Recv Trailer",
1422 orig_buf, orig_len);
Kalle Valobdcd8172011-07-18 00:22:30 +03001423
1424 return status;
1425}
1426
Kalle Valo689def92011-09-06 11:10:49 +03001427static int ath6kl_htc_rx_process_hdr(struct htc_target *target,
1428 struct htc_packet *packet,
1429 u32 *next_lkahds, int *n_lkahds)
Kalle Valobdcd8172011-07-18 00:22:30 +03001430{
1431 int status = 0;
1432 u16 payload_len;
1433 u32 lk_ahd;
1434 struct htc_frame_hdr *htc_hdr = (struct htc_frame_hdr *)packet->buf;
1435
1436 if (n_lkahds != NULL)
1437 *n_lkahds = 0;
1438
1439 ath6kl_dbg_dump(ATH6KL_DBG_RAW_BYTES, "HTC Recv PKT", packet->buf,
1440 packet->act_len);
1441
1442 /*
1443 * NOTE: we cannot assume the alignment of buf, so we use the safe
1444 * macros to retrieve 16 bit fields.
1445 */
1446 payload_len = le16_to_cpu(get_unaligned(&htc_hdr->payld_len));
1447
1448 memcpy((u8 *)&lk_ahd, packet->buf, sizeof(lk_ahd));
1449
1450 if (packet->info.rx.rx_flags & HTC_RX_PKT_REFRESH_HDR) {
1451 /*
1452 * Refresh the expected header and the actual length as it
1453 * was unknown when this packet was grabbed as part of the
1454 * bundle.
1455 */
1456 packet->info.rx.exp_hdr = lk_ahd;
1457 packet->act_len = payload_len + HTC_HDR_LENGTH;
1458
1459 /* validate the actual header that was refreshed */
1460 if (packet->act_len > packet->buf_len) {
1461 ath6kl_err("refreshed hdr payload len (%d) in bundled recv is invalid (hdr: 0x%X)\n",
1462 payload_len, lk_ahd);
1463 /*
1464 * Limit this to max buffer just to print out some
1465 * of the buffer.
1466 */
1467 packet->act_len = min(packet->act_len, packet->buf_len);
1468 status = -ENOMEM;
1469 goto fail_rx;
1470 }
1471
1472 if (packet->endpoint != htc_hdr->eid) {
1473 ath6kl_err("refreshed hdr ep (%d) does not match expected ep (%d)\n",
1474 htc_hdr->eid, packet->endpoint);
1475 status = -ENOMEM;
1476 goto fail_rx;
1477 }
1478 }
1479
1480 if (lk_ahd != packet->info.rx.exp_hdr) {
Kalle Valo689def92011-09-06 11:10:49 +03001481 ath6kl_err("%s(): lk_ahd mismatch! (pPkt:0x%p flags:0x%X)\n",
1482 __func__, packet, packet->info.rx.rx_flags);
Kalle Valobdcd8172011-07-18 00:22:30 +03001483 ath6kl_dbg_dump(ATH6KL_DBG_RAW_BYTES, "Expected Message lk_ahd",
1484 &packet->info.rx.exp_hdr, 4);
1485 ath6kl_dbg_dump(ATH6KL_DBG_RAW_BYTES, "Current Frame Header",
1486 (u8 *)&lk_ahd, sizeof(lk_ahd));
1487 status = -ENOMEM;
1488 goto fail_rx;
1489 }
1490
1491 if (htc_hdr->flags & HTC_FLG_RX_TRAILER) {
1492 if (htc_hdr->ctrl[0] < sizeof(struct htc_record_hdr) ||
1493 htc_hdr->ctrl[0] > payload_len) {
Kalle Valo689def92011-09-06 11:10:49 +03001494 ath6kl_err("%s(): invalid hdr (payload len should be :%d, CB[0] is:%d)\n",
1495 __func__, payload_len, htc_hdr->ctrl[0]);
Kalle Valobdcd8172011-07-18 00:22:30 +03001496 status = -ENOMEM;
1497 goto fail_rx;
1498 }
1499
1500 if (packet->info.rx.rx_flags & HTC_RX_PKT_IGNORE_LOOKAHEAD) {
1501 next_lkahds = NULL;
1502 n_lkahds = NULL;
1503 }
1504
1505 status = htc_proc_trailer(target, packet->buf + HTC_HDR_LENGTH
1506 + payload_len - htc_hdr->ctrl[0],
1507 htc_hdr->ctrl[0], next_lkahds,
1508 n_lkahds, packet->endpoint);
1509
1510 if (status)
1511 goto fail_rx;
1512
1513 packet->act_len -= htc_hdr->ctrl[0];
1514 }
1515
1516 packet->buf += HTC_HDR_LENGTH;
1517 packet->act_len -= HTC_HDR_LENGTH;
1518
1519fail_rx:
1520 if (status)
1521 ath6kl_dbg_dump(ATH6KL_DBG_RAW_BYTES, "BAD HTC Recv PKT",
1522 packet->buf,
1523 packet->act_len < 256 ? packet->act_len : 256);
1524 else {
1525 if (packet->act_len > 0)
1526 ath6kl_dbg_dump(ATH6KL_DBG_RAW_BYTES,
1527 "HTC - Application Msg",
1528 packet->buf, packet->act_len);
1529 }
1530
1531 return status;
1532}
1533
Kalle Valo689def92011-09-06 11:10:49 +03001534static void ath6kl_htc_rx_complete(struct htc_endpoint *endpoint,
1535 struct htc_packet *packet)
Kalle Valobdcd8172011-07-18 00:22:30 +03001536{
1537 ath6kl_dbg(ATH6KL_DBG_HTC_RECV,
1538 "htc calling ep %d recv callback on packet 0x%p\n",
1539 endpoint->eid, packet);
1540 endpoint->ep_cb.rx(endpoint->target, packet);
1541}
1542
Kalle Valo689def92011-09-06 11:10:49 +03001543static int ath6kl_htc_rx_bundle(struct htc_target *target,
1544 struct list_head *rxq,
1545 struct list_head *sync_compq,
1546 int *n_pkt_fetched, bool part_bundle)
Kalle Valobdcd8172011-07-18 00:22:30 +03001547{
1548 struct hif_scatter_req *scat_req;
1549 struct htc_packet *packet;
Vasanthakumar Thiagarajan3b2f5e52011-07-18 14:23:27 +05301550 int rem_space = target->max_rx_bndl_sz;
Kalle Valobdcd8172011-07-18 00:22:30 +03001551 int n_scat_pkt, status = 0, i, len;
1552
1553 n_scat_pkt = get_queue_depth(rxq);
1554 n_scat_pkt = min(n_scat_pkt, target->msg_per_bndl_max);
1555
1556 if ((get_queue_depth(rxq) - n_scat_pkt) > 0) {
1557 /*
1558 * We were forced to split this bundle receive operation
1559 * all packets in this partial bundle must have their
1560 * lookaheads ignored.
1561 */
1562 part_bundle = true;
1563
1564 /*
1565 * This would only happen if the target ignored our max
1566 * bundle limit.
1567 */
Kalle Valo689def92011-09-06 11:10:49 +03001568 ath6kl_warn("%s(): partial bundle detected num:%d , %d\n",
1569 __func__, get_queue_depth(rxq), n_scat_pkt);
Kalle Valobdcd8172011-07-18 00:22:30 +03001570 }
1571
1572 len = 0;
1573
1574 ath6kl_dbg(ATH6KL_DBG_HTC_RECV,
Kalle Valo689def92011-09-06 11:10:49 +03001575 "%s(): (numpackets: %d , actual : %d)\n",
1576 __func__, get_queue_depth(rxq), n_scat_pkt);
Kalle Valobdcd8172011-07-18 00:22:30 +03001577
1578 scat_req = hif_scatter_req_get(target->dev->ar);
1579
1580 if (scat_req == NULL)
1581 goto fail_rx_pkt;
1582
Kalle Valobdcd8172011-07-18 00:22:30 +03001583 for (i = 0; i < n_scat_pkt; i++) {
1584 int pad_len;
1585
1586 packet = list_first_entry(rxq, struct htc_packet, list);
1587 list_del(&packet->list);
1588
Vasanthakumar Thiagarajan5be88242011-07-18 14:23:28 +05301589 pad_len = CALC_TXRX_PADDED_LEN(target,
Kalle Valobdcd8172011-07-18 00:22:30 +03001590 packet->act_len);
1591
1592 if ((rem_space - pad_len) < 0) {
1593 list_add(&packet->list, rxq);
1594 break;
1595 }
1596
1597 rem_space -= pad_len;
1598
1599 if (part_bundle || (i < (n_scat_pkt - 1)))
1600 /*
1601 * Packet 0..n-1 cannot be checked for look-aheads
1602 * since we are fetching a bundle the last packet
1603 * however can have it's lookahead used
1604 */
1605 packet->info.rx.rx_flags |=
1606 HTC_RX_PKT_IGNORE_LOOKAHEAD;
1607
1608 /* NOTE: 1 HTC packet per scatter entry */
1609 scat_req->scat_list[i].buf = packet->buf;
1610 scat_req->scat_list[i].len = pad_len;
1611
1612 packet->info.rx.rx_flags |= HTC_RX_PKT_PART_OF_BUNDLE;
1613
1614 list_add_tail(&packet->list, sync_compq);
1615
1616 WARN_ON(!scat_req->scat_list[i].len);
1617 len += scat_req->scat_list[i].len;
1618 }
1619
1620 scat_req->len = len;
1621 scat_req->scat_entries = i;
1622
1623 status = ath6kldev_submit_scat_req(target->dev, scat_req, true);
1624
1625 if (!status)
1626 *n_pkt_fetched = i;
1627
1628 /* free scatter request */
1629 hif_scatter_req_add(target->dev->ar, scat_req);
1630
1631fail_rx_pkt:
1632
1633 return status;
1634}
1635
Kalle Valo689def92011-09-06 11:10:49 +03001636static int ath6kl_htc_rx_process_packets(struct htc_target *target,
1637 struct list_head *comp_pktq,
1638 u32 lk_ahds[],
1639 int *n_lk_ahd)
Kalle Valobdcd8172011-07-18 00:22:30 +03001640{
1641 struct htc_packet *packet, *tmp_pkt;
1642 struct htc_endpoint *ep;
1643 int status = 0;
1644
1645 list_for_each_entry_safe(packet, tmp_pkt, comp_pktq, list) {
1646 list_del(&packet->list);
1647 ep = &target->endpoint[packet->endpoint];
1648
1649 /* process header for each of the recv packet */
Kalle Valo689def92011-09-06 11:10:49 +03001650 status = ath6kl_htc_rx_process_hdr(target, packet, lk_ahds,
1651 n_lk_ahd);
Kalle Valobdcd8172011-07-18 00:22:30 +03001652 if (status)
1653 return status;
1654
1655 if (list_empty(comp_pktq)) {
1656 /*
1657 * Last packet's more packet flag is set
1658 * based on the lookahead.
1659 */
1660 if (*n_lk_ahd > 0)
Kalle Valo689def92011-09-06 11:10:49 +03001661 ath6kl_htc_rx_set_indicate(lk_ahds[0],
1662 ep, packet);
Kalle Valobdcd8172011-07-18 00:22:30 +03001663 } else
1664 /*
1665 * Packets in a bundle automatically have
1666 * this flag set.
1667 */
1668 packet->info.rx.indicat_flags |=
1669 HTC_RX_FLAGS_INDICATE_MORE_PKTS;
1670
Kalle Valo689def92011-09-06 11:10:49 +03001671 ath6kl_htc_rx_update_stats(ep, *n_lk_ahd);
Kalle Valobdcd8172011-07-18 00:22:30 +03001672
1673 if (packet->info.rx.rx_flags & HTC_RX_PKT_PART_OF_BUNDLE)
1674 ep->ep_st.rx_bundl += 1;
1675
Kalle Valo689def92011-09-06 11:10:49 +03001676 ath6kl_htc_rx_complete(ep, packet);
Kalle Valobdcd8172011-07-18 00:22:30 +03001677 }
1678
1679 return status;
1680}
1681
Kalle Valo689def92011-09-06 11:10:49 +03001682static int ath6kl_htc_rx_fetch(struct htc_target *target,
1683 struct list_head *rx_pktq,
1684 struct list_head *comp_pktq)
Kalle Valobdcd8172011-07-18 00:22:30 +03001685{
1686 int fetched_pkts;
1687 bool part_bundle = false;
1688 int status = 0;
1689
1690 /* now go fetch the list of HTC packets */
1691 while (!list_empty(rx_pktq)) {
1692 fetched_pkts = 0;
1693
1694 if (target->rx_bndl_enable && (get_queue_depth(rx_pktq) > 1)) {
1695 /*
1696 * There are enough packets to attempt a
1697 * bundle transfer and recv bundling is
1698 * allowed.
1699 */
Kalle Valo689def92011-09-06 11:10:49 +03001700 status = ath6kl_htc_rx_bundle(target, rx_pktq,
1701 comp_pktq,
1702 &fetched_pkts,
1703 part_bundle);
Kalle Valobdcd8172011-07-18 00:22:30 +03001704 if (status)
1705 return status;
1706
1707 if (!list_empty(rx_pktq))
1708 part_bundle = true;
1709 }
1710
1711 if (!fetched_pkts) {
1712 struct htc_packet *packet;
1713
1714 packet = list_first_entry(rx_pktq, struct htc_packet,
1715 list);
1716
1717 list_del(&packet->list);
1718
1719 /* fully synchronous */
1720 packet->completion = NULL;
1721
1722 if (!list_empty(rx_pktq))
1723 /*
1724 * look_aheads in all packet
1725 * except the last one in the
1726 * bundle must be ignored
1727 */
1728 packet->info.rx.rx_flags |=
1729 HTC_RX_PKT_IGNORE_LOOKAHEAD;
1730
1731 /* go fetch the packet */
Kalle Valo689def92011-09-06 11:10:49 +03001732 status = ath6kl_htc_rx_packet(target, packet,
1733 packet->act_len);
Kalle Valobdcd8172011-07-18 00:22:30 +03001734 if (status)
1735 return status;
1736
1737 list_add_tail(&packet->list, comp_pktq);
1738 }
1739 }
1740
1741 return status;
1742}
1743
Kalle Vaload226ec2011-08-10 09:49:12 +03001744int ath6kl_htc_rxmsg_pending_handler(struct htc_target *target,
1745 u32 msg_look_ahead[], int *num_pkts)
Kalle Valobdcd8172011-07-18 00:22:30 +03001746{
1747 struct htc_packet *packets, *tmp_pkt;
1748 struct htc_endpoint *endpoint;
1749 struct list_head rx_pktq, comp_pktq;
1750 int status = 0;
1751 u32 look_aheads[HTC_HOST_MAX_MSG_PER_BUNDLE];
1752 int num_look_ahead = 1;
1753 enum htc_endpoint_id id;
1754 int n_fetched = 0;
1755
1756 *num_pkts = 0;
1757
1758 /*
1759 * On first entry copy the look_aheads into our temp array for
1760 * processing
1761 */
1762 memcpy(look_aheads, msg_look_ahead, sizeof(look_aheads));
1763
1764 while (true) {
1765
1766 /*
1767 * First lookahead sets the expected endpoint IDs for all
1768 * packets in a bundle.
1769 */
1770 id = ((struct htc_frame_hdr *)&look_aheads[0])->eid;
1771 endpoint = &target->endpoint[id];
1772
1773 if (id >= ENDPOINT_MAX) {
1774 ath6kl_err("MsgPend, invalid endpoint in look-ahead: %d\n",
1775 id);
1776 status = -ENOMEM;
1777 break;
1778 }
1779
1780 INIT_LIST_HEAD(&rx_pktq);
1781 INIT_LIST_HEAD(&comp_pktq);
1782
1783 /*
1784 * Try to allocate as many HTC RX packets indicated by the
1785 * look_aheads.
1786 */
Kalle Valo689def92011-09-06 11:10:49 +03001787 status = ath6kl_htc_rx_alloc(target, look_aheads,
1788 num_look_ahead, endpoint,
1789 &rx_pktq);
Kalle Valobdcd8172011-07-18 00:22:30 +03001790 if (status)
1791 break;
1792
1793 if (get_queue_depth(&rx_pktq) >= 2)
1794 /*
1795 * A recv bundle was detected, force IRQ status
1796 * re-check again
1797 */
Vasanthakumar Thiagarajanfcb82052011-07-18 14:23:31 +05301798 target->chk_irq_status_cnt = 1;
Kalle Valobdcd8172011-07-18 00:22:30 +03001799
1800 n_fetched += get_queue_depth(&rx_pktq);
1801
1802 num_look_ahead = 0;
1803
Kalle Valo689def92011-09-06 11:10:49 +03001804 status = ath6kl_htc_rx_fetch(target, &rx_pktq, &comp_pktq);
Kalle Valobdcd8172011-07-18 00:22:30 +03001805
1806 if (!status)
Kalle Valo689def92011-09-06 11:10:49 +03001807 ath6kl_htc_rx_chk_water_mark(endpoint);
Kalle Valobdcd8172011-07-18 00:22:30 +03001808
1809 /* Process fetched packets */
Kalle Valo689def92011-09-06 11:10:49 +03001810 status = ath6kl_htc_rx_process_packets(target, &comp_pktq,
1811 look_aheads,
1812 &num_look_ahead);
Kalle Valobdcd8172011-07-18 00:22:30 +03001813
1814 if (!num_look_ahead || status)
1815 break;
1816
1817 /*
1818 * For SYNCH processing, if we get here, we are running
1819 * through the loop again due to a detected lookahead. Set
1820 * flag that we should re-check IRQ status registers again
1821 * before leaving IRQ processing, this can net better
1822 * performance in high throughput situations.
1823 */
Vasanthakumar Thiagarajanfcb82052011-07-18 14:23:31 +05301824 target->chk_irq_status_cnt = 1;
Kalle Valobdcd8172011-07-18 00:22:30 +03001825 }
1826
1827 if (status) {
1828 ath6kl_err("failed to get pending recv messages: %d\n",
1829 status);
1830 /*
1831 * Cleanup any packets we allocated but didn't use to
1832 * actually fetch any packets.
1833 */
1834 list_for_each_entry_safe(packets, tmp_pkt, &rx_pktq, list) {
1835 list_del(&packets->list);
1836 htc_reclaim_rxbuf(target, packets,
1837 &target->endpoint[packets->endpoint]);
1838 }
1839
1840 /* cleanup any packets in sync completion queue */
1841 list_for_each_entry_safe(packets, tmp_pkt, &comp_pktq, list) {
1842 list_del(&packets->list);
1843 htc_reclaim_rxbuf(target, packets,
1844 &target->endpoint[packets->endpoint]);
1845 }
1846
1847 if (target->htc_flags & HTC_OP_STATE_STOPPING) {
1848 ath6kl_warn("host is going to stop blocking receiver for htc_stop\n");
1849 ath6kldev_rx_control(target->dev, false);
1850 }
1851 }
1852
1853 /*
1854 * Before leaving, check to see if host ran out of buffers and
1855 * needs to stop the receiver.
1856 */
1857 if (target->rx_st_flags & HTC_RECV_WAIT_BUFFERS) {
1858 ath6kl_warn("host has no rx buffers blocking receiver to prevent overrun\n");
1859 ath6kldev_rx_control(target->dev, false);
1860 }
1861 *num_pkts = n_fetched;
1862
1863 return status;
1864}
1865
1866/*
1867 * Synchronously wait for a control message from the target,
1868 * This function is used at initialization time ONLY. At init messages
1869 * on ENDPOINT 0 are expected.
1870 */
1871static struct htc_packet *htc_wait_for_ctrl_msg(struct htc_target *target)
1872{
1873 struct htc_packet *packet = NULL;
1874 struct htc_frame_hdr *htc_hdr;
1875 u32 look_ahead;
1876
1877 if (ath6kldev_poll_mboxmsg_rx(target->dev, &look_ahead,
1878 HTC_TARGET_RESPONSE_TIMEOUT))
1879 return NULL;
1880
1881 ath6kl_dbg(ATH6KL_DBG_HTC_RECV,
1882 "htc_wait_for_ctrl_msg: look_ahead : 0x%X\n", look_ahead);
1883
1884 htc_hdr = (struct htc_frame_hdr *)&look_ahead;
1885
1886 if (htc_hdr->eid != ENDPOINT_0)
1887 return NULL;
1888
1889 packet = htc_get_control_buf(target, false);
1890
1891 if (!packet)
1892 return NULL;
1893
1894 packet->info.rx.rx_flags = 0;
1895 packet->info.rx.exp_hdr = look_ahead;
1896 packet->act_len = le16_to_cpu(htc_hdr->payld_len) + HTC_HDR_LENGTH;
1897
1898 if (packet->act_len > packet->buf_len)
1899 goto fail_ctrl_rx;
1900
1901 /* we want synchronous operation */
1902 packet->completion = NULL;
1903
1904 /* get the message from the device, this will block */
Kalle Valo689def92011-09-06 11:10:49 +03001905 if (ath6kl_htc_rx_packet(target, packet, packet->act_len))
Kalle Valobdcd8172011-07-18 00:22:30 +03001906 goto fail_ctrl_rx;
1907
1908 /* process receive header */
Kalle Valo689def92011-09-06 11:10:49 +03001909 packet->status = ath6kl_htc_rx_process_hdr(target, packet, NULL, NULL);
Kalle Valobdcd8172011-07-18 00:22:30 +03001910
1911 if (packet->status) {
Kalle Valo689def92011-09-06 11:10:49 +03001912 ath6kl_err("htc_wait_for_ctrl_msg, ath6kl_htc_rx_process_hdr failed (status = %d)\n",
Kalle Valobdcd8172011-07-18 00:22:30 +03001913 packet->status);
1914 goto fail_ctrl_rx;
1915 }
1916
1917 return packet;
1918
1919fail_ctrl_rx:
1920 if (packet != NULL) {
1921 htc_rxpkt_reset(packet);
1922 reclaim_rx_ctrl_buf(target, packet);
1923 }
1924
1925 return NULL;
1926}
1927
Kalle Vaload226ec2011-08-10 09:49:12 +03001928int ath6kl_htc_add_rxbuf_multiple(struct htc_target *target,
1929 struct list_head *pkt_queue)
Kalle Valobdcd8172011-07-18 00:22:30 +03001930{
1931 struct htc_endpoint *endpoint;
1932 struct htc_packet *first_pkt;
1933 bool rx_unblock = false;
1934 int status = 0, depth;
1935
1936 if (list_empty(pkt_queue))
1937 return -ENOMEM;
1938
1939 first_pkt = list_first_entry(pkt_queue, struct htc_packet, list);
1940
1941 if (first_pkt->endpoint >= ENDPOINT_MAX)
1942 return status;
1943
1944 depth = get_queue_depth(pkt_queue);
1945
1946 ath6kl_dbg(ATH6KL_DBG_HTC_RECV,
1947 "htc_add_rxbuf_multiple: ep id: %d, cnt:%d, len: %d\n",
1948 first_pkt->endpoint, depth, first_pkt->buf_len);
1949
1950 endpoint = &target->endpoint[first_pkt->endpoint];
1951
1952 if (target->htc_flags & HTC_OP_STATE_STOPPING) {
1953 struct htc_packet *packet, *tmp_pkt;
1954
1955 /* walk through queue and mark each one canceled */
1956 list_for_each_entry_safe(packet, tmp_pkt, pkt_queue, list) {
1957 packet->status = -ECANCELED;
1958 list_del(&packet->list);
Kalle Valo689def92011-09-06 11:10:49 +03001959 ath6kl_htc_rx_complete(endpoint, packet);
Kalle Valobdcd8172011-07-18 00:22:30 +03001960 }
1961
1962 return status;
1963 }
1964
1965 spin_lock_bh(&target->rx_lock);
1966
1967 list_splice_tail_init(pkt_queue, &endpoint->rx_bufq);
1968
1969 /* check if we are blocked waiting for a new buffer */
1970 if (target->rx_st_flags & HTC_RECV_WAIT_BUFFERS) {
1971 if (target->ep_waiting == first_pkt->endpoint) {
1972 ath6kl_dbg(ATH6KL_DBG_HTC_RECV,
1973 "receiver was blocked on ep:%d, unblocking.\n",
1974 target->ep_waiting);
1975 target->rx_st_flags &= ~HTC_RECV_WAIT_BUFFERS;
1976 target->ep_waiting = ENDPOINT_MAX;
1977 rx_unblock = true;
1978 }
1979 }
1980
1981 spin_unlock_bh(&target->rx_lock);
1982
1983 if (rx_unblock && !(target->htc_flags & HTC_OP_STATE_STOPPING))
1984 /* TODO : implement a buffer threshold count? */
1985 ath6kldev_rx_control(target->dev, true);
1986
1987 return status;
1988}
1989
Kalle Vaload226ec2011-08-10 09:49:12 +03001990void ath6kl_htc_flush_rx_buf(struct htc_target *target)
Kalle Valobdcd8172011-07-18 00:22:30 +03001991{
1992 struct htc_endpoint *endpoint;
1993 struct htc_packet *packet, *tmp_pkt;
1994 int i;
1995
1996 for (i = ENDPOINT_0; i < ENDPOINT_MAX; i++) {
1997 endpoint = &target->endpoint[i];
1998 if (!endpoint->svc_id)
1999 /* not in use.. */
2000 continue;
2001
2002 spin_lock_bh(&target->rx_lock);
2003 list_for_each_entry_safe(packet, tmp_pkt,
2004 &endpoint->rx_bufq, list) {
2005 list_del(&packet->list);
2006 spin_unlock_bh(&target->rx_lock);
2007 ath6kl_dbg(ATH6KL_DBG_HTC_RECV,
2008 "flushing rx pkt:0x%p, len:%d, ep:%d\n",
2009 packet, packet->buf_len,
2010 packet->endpoint);
2011 dev_kfree_skb(packet->pkt_cntxt);
2012 spin_lock_bh(&target->rx_lock);
2013 }
2014 spin_unlock_bh(&target->rx_lock);
2015 }
2016}
2017
Kalle Vaload226ec2011-08-10 09:49:12 +03002018int ath6kl_htc_conn_service(struct htc_target *target,
2019 struct htc_service_connect_req *conn_req,
2020 struct htc_service_connect_resp *conn_resp)
Kalle Valobdcd8172011-07-18 00:22:30 +03002021{
2022 struct htc_packet *rx_pkt = NULL;
2023 struct htc_packet *tx_pkt = NULL;
2024 struct htc_conn_service_resp *resp_msg;
2025 struct htc_conn_service_msg *conn_msg;
2026 struct htc_endpoint *endpoint;
2027 enum htc_endpoint_id assigned_ep = ENDPOINT_MAX;
2028 unsigned int max_msg_sz = 0;
2029 int status = 0;
2030
2031 ath6kl_dbg(ATH6KL_DBG_TRC,
2032 "htc_conn_service, target:0x%p service id:0x%X\n",
2033 target, conn_req->svc_id);
2034
2035 if (conn_req->svc_id == HTC_CTRL_RSVD_SVC) {
2036 /* special case for pseudo control service */
2037 assigned_ep = ENDPOINT_0;
2038 max_msg_sz = HTC_MAX_CTRL_MSG_LEN;
2039 } else {
2040 /* allocate a packet to send to the target */
2041 tx_pkt = htc_get_control_buf(target, true);
2042
2043 if (!tx_pkt)
2044 return -ENOMEM;
2045
2046 conn_msg = (struct htc_conn_service_msg *)tx_pkt->buf;
2047 memset(conn_msg, 0, sizeof(*conn_msg));
2048 conn_msg->msg_id = cpu_to_le16(HTC_MSG_CONN_SVC_ID);
2049 conn_msg->svc_id = cpu_to_le16(conn_req->svc_id);
2050 conn_msg->conn_flags = cpu_to_le16(conn_req->conn_flags);
2051
2052 set_htc_pkt_info(tx_pkt, NULL, (u8 *) conn_msg,
2053 sizeof(*conn_msg) + conn_msg->svc_meta_len,
2054 ENDPOINT_0, HTC_SERVICE_TX_PACKET_TAG);
2055
2056 /* we want synchronous operation */
2057 tx_pkt->completion = NULL;
Kalle Valodfa01042011-09-06 11:10:49 +03002058 ath6kl_htc_tx_prep_pkt(tx_pkt, 0, 0, 0);
2059 status = ath6kl_htc_tx_issue(target, tx_pkt);
Kalle Valobdcd8172011-07-18 00:22:30 +03002060
2061 if (status)
2062 goto fail_tx;
2063
2064 /* wait for response */
2065 rx_pkt = htc_wait_for_ctrl_msg(target);
2066
2067 if (!rx_pkt) {
2068 status = -ENOMEM;
2069 goto fail_tx;
2070 }
2071
2072 resp_msg = (struct htc_conn_service_resp *)rx_pkt->buf;
2073
2074 if ((le16_to_cpu(resp_msg->msg_id) != HTC_MSG_CONN_SVC_RESP_ID)
2075 || (rx_pkt->act_len < sizeof(*resp_msg))) {
2076 status = -ENOMEM;
2077 goto fail_tx;
2078 }
2079
2080 conn_resp->resp_code = resp_msg->status;
2081 /* check response status */
2082 if (resp_msg->status != HTC_SERVICE_SUCCESS) {
2083 ath6kl_err("target failed service 0x%X connect request (status:%d)\n",
2084 resp_msg->svc_id, resp_msg->status);
2085 status = -ENOMEM;
2086 goto fail_tx;
2087 }
2088
2089 assigned_ep = (enum htc_endpoint_id)resp_msg->eid;
2090 max_msg_sz = le16_to_cpu(resp_msg->max_msg_sz);
2091 }
2092
2093 if (assigned_ep >= ENDPOINT_MAX || !max_msg_sz) {
2094 status = -ENOMEM;
2095 goto fail_tx;
2096 }
2097
2098 endpoint = &target->endpoint[assigned_ep];
2099 endpoint->eid = assigned_ep;
2100 if (endpoint->svc_id) {
2101 status = -ENOMEM;
2102 goto fail_tx;
2103 }
2104
2105 /* return assigned endpoint to caller */
2106 conn_resp->endpoint = assigned_ep;
2107 conn_resp->len_max = max_msg_sz;
2108
2109 /* setup the endpoint */
2110
2111 /* this marks the endpoint in use */
2112 endpoint->svc_id = conn_req->svc_id;
2113
2114 endpoint->max_txq_depth = conn_req->max_txq_depth;
2115 endpoint->len_max = max_msg_sz;
2116 endpoint->ep_cb = conn_req->ep_cb;
2117 endpoint->cred_dist.svc_id = conn_req->svc_id;
2118 endpoint->cred_dist.htc_rsvd = endpoint;
2119 endpoint->cred_dist.endpoint = assigned_ep;
2120 endpoint->cred_dist.cred_sz = target->tgt_cred_sz;
2121
2122 if (conn_req->max_rxmsg_sz) {
2123 /*
2124 * Override cred_per_msg calculation, this optimizes
2125 * the credit-low indications since the host will actually
2126 * issue smaller messages in the Send path.
2127 */
2128 if (conn_req->max_rxmsg_sz > max_msg_sz) {
2129 status = -ENOMEM;
2130 goto fail_tx;
2131 }
2132 endpoint->cred_dist.cred_per_msg =
2133 conn_req->max_rxmsg_sz / target->tgt_cred_sz;
2134 } else
2135 endpoint->cred_dist.cred_per_msg =
2136 max_msg_sz / target->tgt_cred_sz;
2137
2138 if (!endpoint->cred_dist.cred_per_msg)
2139 endpoint->cred_dist.cred_per_msg = 1;
2140
2141 /* save local connection flags */
2142 endpoint->conn_flags = conn_req->flags;
2143
2144fail_tx:
2145 if (tx_pkt)
2146 htc_reclaim_txctrl_buf(target, tx_pkt);
2147
2148 if (rx_pkt) {
2149 htc_rxpkt_reset(rx_pkt);
2150 reclaim_rx_ctrl_buf(target, rx_pkt);
2151 }
2152
2153 return status;
2154}
2155
2156static void reset_ep_state(struct htc_target *target)
2157{
2158 struct htc_endpoint *endpoint;
2159 int i;
2160
2161 for (i = ENDPOINT_0; i < ENDPOINT_MAX; i++) {
2162 endpoint = &target->endpoint[i];
2163 memset(&endpoint->cred_dist, 0, sizeof(endpoint->cred_dist));
2164 endpoint->svc_id = 0;
2165 endpoint->len_max = 0;
2166 endpoint->max_txq_depth = 0;
2167 memset(&endpoint->ep_st, 0,
2168 sizeof(endpoint->ep_st));
2169 INIT_LIST_HEAD(&endpoint->rx_bufq);
2170 INIT_LIST_HEAD(&endpoint->txq);
2171 endpoint->target = target;
2172 }
2173
2174 /* reset distribution list */
2175 INIT_LIST_HEAD(&target->cred_dist_list);
2176}
2177
Kalle Vaload226ec2011-08-10 09:49:12 +03002178int ath6kl_htc_get_rxbuf_num(struct htc_target *target,
2179 enum htc_endpoint_id endpoint)
Kalle Valobdcd8172011-07-18 00:22:30 +03002180{
2181 int num;
2182
2183 spin_lock_bh(&target->rx_lock);
2184 num = get_queue_depth(&(target->endpoint[endpoint].rx_bufq));
2185 spin_unlock_bh(&target->rx_lock);
2186 return num;
2187}
2188
2189static void htc_setup_msg_bndl(struct htc_target *target)
2190{
Kalle Valobdcd8172011-07-18 00:22:30 +03002191 /* limit what HTC can handle */
2192 target->msg_per_bndl_max = min(HTC_HOST_MAX_MSG_PER_BUNDLE,
2193 target->msg_per_bndl_max);
2194
Vasanthakumar Thiagarajan50745af2011-07-18 14:23:29 +05302195 if (ath6kl_hif_enable_scatter(target->dev->ar)) {
Kalle Valobdcd8172011-07-18 00:22:30 +03002196 target->msg_per_bndl_max = 0;
2197 return;
2198 }
2199
2200 /* limit bundle what the device layer can handle */
Vasanthakumar Thiagarajan50745af2011-07-18 14:23:29 +05302201 target->msg_per_bndl_max = min(target->max_scat_entries,
Kalle Valobdcd8172011-07-18 00:22:30 +03002202 target->msg_per_bndl_max);
2203
2204 ath6kl_dbg(ATH6KL_DBG_TRC,
2205 "htc bundling allowed. max msg per htc bundle: %d\n",
2206 target->msg_per_bndl_max);
2207
2208 /* Max rx bundle size is limited by the max tx bundle size */
Vasanthakumar Thiagarajan50745af2011-07-18 14:23:29 +05302209 target->max_rx_bndl_sz = target->max_xfer_szper_scatreq;
Kalle Valobdcd8172011-07-18 00:22:30 +03002210 /* Max tx bundle size if limited by the extended mbox address range */
Vasanthakumar Thiagarajan3b2f5e52011-07-18 14:23:27 +05302211 target->max_tx_bndl_sz = min(HIF_MBOX0_EXT_WIDTH,
Vasanthakumar Thiagarajan50745af2011-07-18 14:23:29 +05302212 target->max_xfer_szper_scatreq);
Kalle Valobdcd8172011-07-18 00:22:30 +03002213
2214 ath6kl_dbg(ATH6KL_DBG_ANY, "max recv: %d max send: %d\n",
Vasanthakumar Thiagarajan3b2f5e52011-07-18 14:23:27 +05302215 target->max_rx_bndl_sz, target->max_tx_bndl_sz);
Kalle Valobdcd8172011-07-18 00:22:30 +03002216
Vasanthakumar Thiagarajan3b2f5e52011-07-18 14:23:27 +05302217 if (target->max_tx_bndl_sz)
Kalle Valobdcd8172011-07-18 00:22:30 +03002218 target->tx_bndl_enable = true;
2219
Vasanthakumar Thiagarajan3b2f5e52011-07-18 14:23:27 +05302220 if (target->max_rx_bndl_sz)
Kalle Valobdcd8172011-07-18 00:22:30 +03002221 target->rx_bndl_enable = true;
2222
Vasanthakumar Thiagarajan5be88242011-07-18 14:23:28 +05302223 if ((target->tgt_cred_sz % target->block_sz) != 0) {
Kalle Valobdcd8172011-07-18 00:22:30 +03002224 ath6kl_warn("credit size: %d is not block aligned! Disabling send bundling\n",
2225 target->tgt_cred_sz);
2226
2227 /*
2228 * Disallow send bundling since the credit size is
2229 * not aligned to a block size the I/O block
2230 * padding will spill into the next credit buffer
2231 * which is fatal.
2232 */
2233 target->tx_bndl_enable = false;
2234 }
2235}
2236
Kalle Vaload226ec2011-08-10 09:49:12 +03002237int ath6kl_htc_wait_target(struct htc_target *target)
Kalle Valobdcd8172011-07-18 00:22:30 +03002238{
2239 struct htc_packet *packet = NULL;
2240 struct htc_ready_ext_msg *rdy_msg;
2241 struct htc_service_connect_req connect;
2242 struct htc_service_connect_resp resp;
2243 int status;
2244
2245 /* we should be getting 1 control message that the target is ready */
2246 packet = htc_wait_for_ctrl_msg(target);
2247
2248 if (!packet)
2249 return -ENOMEM;
2250
2251 /* we controlled the buffer creation so it's properly aligned */
2252 rdy_msg = (struct htc_ready_ext_msg *)packet->buf;
2253
2254 if ((le16_to_cpu(rdy_msg->ver2_0_info.msg_id) != HTC_MSG_READY_ID) ||
2255 (packet->act_len < sizeof(struct htc_ready_msg))) {
2256 status = -ENOMEM;
2257 goto fail_wait_target;
2258 }
2259
2260 if (!rdy_msg->ver2_0_info.cred_cnt || !rdy_msg->ver2_0_info.cred_sz) {
2261 status = -ENOMEM;
2262 goto fail_wait_target;
2263 }
2264
2265 target->tgt_creds = le16_to_cpu(rdy_msg->ver2_0_info.cred_cnt);
2266 target->tgt_cred_sz = le16_to_cpu(rdy_msg->ver2_0_info.cred_sz);
2267
2268 ath6kl_dbg(ATH6KL_DBG_HTC_RECV,
2269 "target ready: credits: %d credit size: %d\n",
2270 target->tgt_creds, target->tgt_cred_sz);
2271
2272 /* check if this is an extended ready message */
2273 if (packet->act_len >= sizeof(struct htc_ready_ext_msg)) {
2274 /* this is an extended message */
2275 target->htc_tgt_ver = rdy_msg->htc_ver;
2276 target->msg_per_bndl_max = rdy_msg->msg_per_htc_bndl;
2277 } else {
2278 /* legacy */
2279 target->htc_tgt_ver = HTC_VERSION_2P0;
2280 target->msg_per_bndl_max = 0;
2281 }
2282
2283 ath6kl_dbg(ATH6KL_DBG_TRC, "using htc protocol version : %s (%d)\n",
2284 (target->htc_tgt_ver == HTC_VERSION_2P0) ? "2.0" : ">= 2.1",
2285 target->htc_tgt_ver);
2286
2287 if (target->msg_per_bndl_max > 0)
2288 htc_setup_msg_bndl(target);
2289
2290 /* setup our pseudo HTC control endpoint connection */
2291 memset(&connect, 0, sizeof(connect));
2292 memset(&resp, 0, sizeof(resp));
2293 connect.ep_cb.rx = htc_ctrl_rx;
2294 connect.ep_cb.rx_refill = NULL;
2295 connect.ep_cb.tx_full = NULL;
2296 connect.max_txq_depth = NUM_CONTROL_BUFFERS;
2297 connect.svc_id = HTC_CTRL_RSVD_SVC;
2298
2299 /* connect fake service */
Kalle Vaload226ec2011-08-10 09:49:12 +03002300 status = ath6kl_htc_conn_service((void *)target, &connect, &resp);
Kalle Valobdcd8172011-07-18 00:22:30 +03002301
2302 if (status)
2303 ath6kl_hif_cleanup_scatter(target->dev->ar);
2304
2305fail_wait_target:
2306 if (packet) {
2307 htc_rxpkt_reset(packet);
2308 reclaim_rx_ctrl_buf(target, packet);
2309 }
2310
2311 return status;
2312}
2313
2314/*
2315 * Start HTC, enable interrupts and let the target know
2316 * host has finished setup.
2317 */
Kalle Vaload226ec2011-08-10 09:49:12 +03002318int ath6kl_htc_start(struct htc_target *target)
Kalle Valobdcd8172011-07-18 00:22:30 +03002319{
2320 struct htc_packet *packet;
2321 int status;
2322
2323 /* Disable interrupts at the chip level */
2324 ath6kldev_disable_intrs(target->dev);
2325
2326 target->htc_flags = 0;
2327 target->rx_st_flags = 0;
2328
2329 /* Push control receive buffers into htc control endpoint */
2330 while ((packet = htc_get_control_buf(target, false)) != NULL) {
2331 status = htc_add_rxbuf(target, packet);
2332 if (status)
2333 return status;
2334 }
2335
2336 /* NOTE: the first entry in the distribution list is ENDPOINT_0 */
2337 ath6k_credit_init(target->cred_dist_cntxt, &target->cred_dist_list,
2338 target->tgt_creds);
2339
2340 dump_cred_dist_stats(target);
2341
2342 /* Indicate to the target of the setup completion */
2343 status = htc_setup_tx_complete(target);
2344
2345 if (status)
2346 return status;
2347
2348 /* unmask interrupts */
2349 status = ath6kldev_unmask_intrs(target->dev);
2350
2351 if (status)
Kalle Vaload226ec2011-08-10 09:49:12 +03002352 ath6kl_htc_stop(target);
Kalle Valobdcd8172011-07-18 00:22:30 +03002353
2354 return status;
2355}
2356
2357/* htc_stop: stop interrupt reception, and flush all queued buffers */
Kalle Vaload226ec2011-08-10 09:49:12 +03002358void ath6kl_htc_stop(struct htc_target *target)
Kalle Valobdcd8172011-07-18 00:22:30 +03002359{
2360 spin_lock_bh(&target->htc_lock);
2361 target->htc_flags |= HTC_OP_STATE_STOPPING;
2362 spin_unlock_bh(&target->htc_lock);
2363
2364 /*
2365 * Masking interrupts is a synchronous operation, when this
2366 * function returns all pending HIF I/O has completed, we can
2367 * safely flush the queues.
2368 */
2369 ath6kldev_mask_intrs(target->dev);
2370
Kalle Vaload226ec2011-08-10 09:49:12 +03002371 ath6kl_htc_flush_txep_all(target);
Kalle Valobdcd8172011-07-18 00:22:30 +03002372
Kalle Vaload226ec2011-08-10 09:49:12 +03002373 ath6kl_htc_flush_rx_buf(target);
Kalle Valobdcd8172011-07-18 00:22:30 +03002374
2375 reset_ep_state(target);
2376}
2377
Kalle Vaload226ec2011-08-10 09:49:12 +03002378void *ath6kl_htc_create(struct ath6kl *ar)
Kalle Valobdcd8172011-07-18 00:22:30 +03002379{
2380 struct htc_target *target = NULL;
2381 struct htc_packet *packet;
2382 int status = 0, i = 0;
2383 u32 block_size, ctrl_bufsz;
2384
2385 target = kzalloc(sizeof(*target), GFP_KERNEL);
2386 if (!target) {
2387 ath6kl_err("unable to allocate memory\n");
2388 return NULL;
2389 }
2390
2391 target->dev = kzalloc(sizeof(*target->dev), GFP_KERNEL);
2392 if (!target->dev) {
2393 ath6kl_err("unable to allocate memory\n");
2394 status = -ENOMEM;
2395 goto fail_create_htc;
2396 }
2397
2398 spin_lock_init(&target->htc_lock);
2399 spin_lock_init(&target->rx_lock);
2400 spin_lock_init(&target->tx_lock);
2401
2402 INIT_LIST_HEAD(&target->free_ctrl_txbuf);
2403 INIT_LIST_HEAD(&target->free_ctrl_rxbuf);
2404 INIT_LIST_HEAD(&target->cred_dist_list);
2405
2406 target->dev->ar = ar;
2407 target->dev->htc_cnxt = target;
Kalle Valobdcd8172011-07-18 00:22:30 +03002408 target->ep_waiting = ENDPOINT_MAX;
2409
2410 reset_ep_state(target);
2411
2412 status = ath6kldev_setup(target->dev);
2413
2414 if (status)
2415 goto fail_create_htc;
2416
2417 block_size = ar->mbox_info.block_size;
2418
2419 ctrl_bufsz = (block_size > HTC_MAX_CTRL_MSG_LEN) ?
2420 (block_size + HTC_HDR_LENGTH) :
2421 (HTC_MAX_CTRL_MSG_LEN + HTC_HDR_LENGTH);
2422
2423 for (i = 0; i < NUM_CONTROL_BUFFERS; i++) {
2424 packet = kzalloc(sizeof(*packet), GFP_KERNEL);
2425 if (!packet)
2426 break;
2427
2428 packet->buf_start = kzalloc(ctrl_bufsz, GFP_KERNEL);
2429 if (!packet->buf_start) {
2430 kfree(packet);
2431 break;
2432 }
2433
2434 packet->buf_len = ctrl_bufsz;
2435 if (i < NUM_CONTROL_RX_BUFFERS) {
2436 packet->act_len = 0;
2437 packet->buf = packet->buf_start;
2438 packet->endpoint = ENDPOINT_0;
2439 list_add_tail(&packet->list, &target->free_ctrl_rxbuf);
2440 } else
2441 list_add_tail(&packet->list, &target->free_ctrl_txbuf);
2442 }
2443
2444fail_create_htc:
2445 if (i != NUM_CONTROL_BUFFERS || status) {
2446 if (target) {
Kalle Vaload226ec2011-08-10 09:49:12 +03002447 ath6kl_htc_cleanup(target);
Kalle Valobdcd8172011-07-18 00:22:30 +03002448 target = NULL;
2449 }
2450 }
2451
2452 return target;
2453}
2454
2455/* cleanup the HTC instance */
Kalle Vaload226ec2011-08-10 09:49:12 +03002456void ath6kl_htc_cleanup(struct htc_target *target)
Kalle Valobdcd8172011-07-18 00:22:30 +03002457{
2458 struct htc_packet *packet, *tmp_packet;
2459
2460 ath6kl_hif_cleanup_scatter(target->dev->ar);
2461
2462 list_for_each_entry_safe(packet, tmp_packet,
2463 &target->free_ctrl_txbuf, list) {
2464 list_del(&packet->list);
2465 kfree(packet->buf_start);
2466 kfree(packet);
2467 }
2468
2469 list_for_each_entry_safe(packet, tmp_packet,
2470 &target->free_ctrl_rxbuf, list) {
2471 list_del(&packet->list);
2472 kfree(packet->buf_start);
2473 kfree(packet);
2474 }
2475
2476 kfree(target->dev);
2477 kfree(target);
2478}