ath6kl: Fix htc_packet leak in ath6kl_htc_rx_process_packets()
[cascardo/linux.git] / drivers / net / wireless / ath / ath6kl / htc.c
1 /*
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
25 static void ath6kl_htc_tx_buf_align(u8 **buf, unsigned long len)
26 {
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
36 static void ath6kl_htc_tx_prep_pkt(struct htc_packet *packet, u8 flags,
37                                    int ctrl0, int ctrl1)
38 {
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
52 static 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
60 static 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
85 static 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
115 static 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
128 static 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
141 static void htc_async_tx_scat_complete(struct htc_target *target,
142                                        struct hif_scatter_req *scat_req)
143 {
144         struct htc_endpoint *endpoint;
145         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
158         packet = scat_req->scat_list[0].packet;
159         endpoint = &target->endpoint[packet->endpoint];
160
161         /* 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
181 static int ath6kl_htc_tx_issue(struct htc_target *target,
182                                struct htc_packet *packet)
183 {
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
196         padded_len = CALC_TXRX_PADDED_LEN(target, send_len);
197
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;
211                 packet->buf += HTC_HDR_LENGTH;
212         } 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
221 static 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
280 static void ath6kl_htc_tx_pkts_get(struct htc_target *target,
281                                    struct htc_endpoint *endpoint,
282                                    struct list_head *queue)
283 {
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
302                 len = CALC_TXRX_PADDED_LEN(target,
303                                            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 */
330 static 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
361 static 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)
366 {
367         struct htc_packet *packet;
368         int i, len, rem_scat, cred_pad;
369         int status = 0;
370
371         rem_scat = target->max_tx_bndl_sz;
372
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);
380                 len = CALC_TXRX_PADDED_LEN(target,
381                                            packet->act_len + HTC_HDR_LENGTH);
382
383                 cred_pad = htc_get_credit_padding(target->tgt_cred_sz,
384                                                   &len, endpoint);
385                 if (cred_pad < 0 || rem_scat < len) {
386                         status = -ENOSPC;
387                         break;
388                 }
389
390                 rem_scat -= len;
391                 /* now remove it from the queue */
392                 list_del(&packet->list);
393
394                 scat_req->scat_list[i].packet = packet;
395                 /* prepare packet and flag message as part of a send bundle */
396                 ath6kl_htc_tx_prep_pkt(packet,
397                                 packet->info.tx.flags | HTC_FLAGS_SEND_BUNDLE,
398                                 cred_pad, packet->info.tx.seqno);
399                 /* Make sure the buffer is 4-byte aligned */
400                 ath6kl_htc_tx_buf_align(&packet->buf,
401                                         packet->act_len + HTC_HDR_LENGTH);
402                 scat_req->scat_list[i].buf = packet->buf;
403                 scat_req->scat_list[i].len = len;
404
405                 scat_req->len += len;
406                 scat_req->scat_entries++;
407                 ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
408                            "%d, adding pkt : 0x%p len:%d (remaining space:%d)\n",
409                            i, packet, len, rem_scat);
410         }
411
412         /* Roll back scatter setup in case of any failure */
413         if (scat_req->scat_entries < HTC_MIN_HTC_MSGS_TO_BUNDLE) {
414                 for (i = scat_req->scat_entries - 1; i >= 0; i--) {
415                         packet = scat_req->scat_list[i].packet;
416                         if (packet) {
417                                 packet->buf += HTC_HDR_LENGTH;
418                                 list_add(&packet->list, queue);
419                         }
420                 }
421                 return -EAGAIN;
422         }
423
424         return status;
425 }
426
427 /*
428  * Drain a queue and send as bundles this function may return without fully
429  * draining the queue when
430  *
431  *    1. scatter resources are exhausted
432  *    2. a message that will consume a partial credit will stop the
433  *    bundling process early
434  *    3. we drop below the minimum number of messages for a bundle
435  */
436 static void ath6kl_htc_tx_bundle(struct htc_endpoint *endpoint,
437                                  struct list_head *queue,
438                                  int *sent_bundle, int *n_bundle_pkts)
439 {
440         struct htc_target *target = endpoint->target;
441         struct hif_scatter_req *scat_req = NULL;
442         int n_scat, n_sent_bundle = 0, tot_pkts_bundle = 0;
443         int status;
444
445         while (true) {
446                 status = 0;
447                 n_scat = get_queue_depth(queue);
448                 n_scat = min(n_scat, target->msg_per_bndl_max);
449
450                 if (n_scat < HTC_MIN_HTC_MSGS_TO_BUNDLE)
451                         /* not enough to bundle */
452                         break;
453
454                 scat_req = hif_scatter_req_get(target->dev->ar);
455
456                 if (!scat_req) {
457                         /* no scatter resources  */
458                         ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
459                                 "no more scatter resources\n");
460                         break;
461                 }
462
463                 ath6kl_dbg(ATH6KL_DBG_HTC_SEND, "pkts to scatter: %d\n",
464                            n_scat);
465
466                 scat_req->len = 0;
467                 scat_req->scat_entries = 0;
468
469                 status = ath6kl_htc_tx_setup_scat_list(target, endpoint,
470                                                        scat_req, n_scat,
471                                                        queue);
472                 if (status == -EAGAIN) {
473                         hif_scatter_req_add(target->dev->ar, scat_req);
474                         break;
475                 }
476
477                 /* send path is always asynchronous */
478                 scat_req->complete = htc_async_tx_scat_complete;
479                 n_sent_bundle++;
480                 tot_pkts_bundle += scat_req->scat_entries;
481
482                 ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
483                            "send scatter total bytes: %d , entries: %d\n",
484                            scat_req->len, scat_req->scat_entries);
485                 ath6kldev_submit_scat_req(target->dev, scat_req, false);
486
487                 if (status)
488                         break;
489         }
490
491         *sent_bundle = n_sent_bundle;
492         *n_bundle_pkts = tot_pkts_bundle;
493         ath6kl_dbg(ATH6KL_DBG_HTC_SEND, "%s (sent:%d)\n",
494                    __func__, n_sent_bundle);
495
496         return;
497 }
498
499 static void ath6kl_htc_tx_from_queue(struct htc_target *target,
500                                      struct htc_endpoint *endpoint)
501 {
502         struct list_head txq;
503         struct htc_packet *packet;
504         int bundle_sent;
505         int n_pkts_bundle;
506
507         spin_lock_bh(&target->tx_lock);
508
509         endpoint->tx_proc_cnt++;
510         if (endpoint->tx_proc_cnt > 1) {
511                 endpoint->tx_proc_cnt--;
512                 spin_unlock_bh(&target->tx_lock);
513                 ath6kl_dbg(ATH6KL_DBG_HTC_SEND, "htc_try_send (busy)\n");
514                 return;
515         }
516
517         /*
518          * drain the endpoint TX queue for transmission as long
519          * as we have enough credits.
520          */
521         INIT_LIST_HEAD(&txq);
522
523         while (true) {
524
525                 if (list_empty(&endpoint->txq))
526                         break;
527
528                 ath6kl_htc_tx_pkts_get(target, endpoint, &txq);
529
530                 if (list_empty(&txq))
531                         break;
532
533                 spin_unlock_bh(&target->tx_lock);
534
535                 bundle_sent = 0;
536                 n_pkts_bundle = 0;
537
538                 while (true) {
539                         /* try to send a bundle on each pass */
540                         if ((target->tx_bndl_enable) &&
541                             (get_queue_depth(&txq) >=
542                             HTC_MIN_HTC_MSGS_TO_BUNDLE)) {
543                                 int temp1 = 0, temp2 = 0;
544
545                                 ath6kl_htc_tx_bundle(endpoint, &txq,
546                                                      &temp1, &temp2);
547                                 bundle_sent += temp1;
548                                 n_pkts_bundle += temp2;
549                         }
550
551                         if (list_empty(&txq))
552                                 break;
553
554                         packet = list_first_entry(&txq, struct htc_packet,
555                                                   list);
556                         list_del(&packet->list);
557
558                         ath6kl_htc_tx_prep_pkt(packet, packet->info.tx.flags,
559                                                0, packet->info.tx.seqno);
560                         ath6kl_htc_tx_issue(target, packet);
561                 }
562
563                 spin_lock_bh(&target->tx_lock);
564
565                 endpoint->ep_st.tx_bundles += bundle_sent;
566                 endpoint->ep_st.tx_pkt_bundled += n_pkts_bundle;
567         }
568
569         endpoint->tx_proc_cnt = 0;
570         spin_unlock_bh(&target->tx_lock);
571 }
572
573 static bool ath6kl_htc_tx_try(struct htc_target *target,
574                               struct htc_endpoint *endpoint,
575                               struct htc_packet *tx_pkt)
576 {
577         struct htc_ep_callbacks ep_cb;
578         int txq_depth;
579         bool overflow = false;
580
581         ep_cb = endpoint->ep_cb;
582
583         spin_lock_bh(&target->tx_lock);
584         txq_depth = get_queue_depth(&endpoint->txq);
585         spin_unlock_bh(&target->tx_lock);
586
587         if (txq_depth >= endpoint->max_txq_depth)
588                 overflow = true;
589
590         if (overflow)
591                 ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
592                            "ep %d, tx queue will overflow :%d , tx depth:%d, max:%d\n",
593                            endpoint->eid, overflow, txq_depth,
594                            endpoint->max_txq_depth);
595
596         if (overflow && ep_cb.tx_full) {
597                 ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
598                            "indicating overflowed tx packet: 0x%p\n", tx_pkt);
599
600                 if (ep_cb.tx_full(endpoint->target, tx_pkt) ==
601                     HTC_SEND_FULL_DROP) {
602                         endpoint->ep_st.tx_dropped += 1;
603                         return false;
604                 }
605         }
606
607         spin_lock_bh(&target->tx_lock);
608         list_add_tail(&tx_pkt->list, &endpoint->txq);
609         spin_unlock_bh(&target->tx_lock);
610
611         ath6kl_htc_tx_from_queue(target, endpoint);
612
613         return true;
614 }
615
616 static void htc_chk_ep_txq(struct htc_target *target)
617 {
618         struct htc_endpoint *endpoint;
619         struct htc_endpoint_credit_dist *cred_dist;
620
621         /*
622          * Run through the credit distribution list to see if there are
623          * packets queued. NOTE: no locks need to be taken since the
624          * distribution list is not dynamic (cannot be re-ordered) and we
625          * are not modifying any state.
626          */
627         list_for_each_entry(cred_dist, &target->cred_dist_list, list) {
628                 endpoint = (struct htc_endpoint *)cred_dist->htc_rsvd;
629
630                 spin_lock_bh(&target->tx_lock);
631                 if (!list_empty(&endpoint->txq)) {
632                         ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
633                                    "ep %d has %d credits and %d packets in tx queue\n",
634                                    cred_dist->endpoint,
635                                    endpoint->cred_dist.credits,
636                                    get_queue_depth(&endpoint->txq));
637                         spin_unlock_bh(&target->tx_lock);
638                         /*
639                          * Try to start the stalled queue, this list is
640                          * ordered by priority. If there are credits
641                          * available the highest priority queue will get a
642                          * chance to reclaim credits from lower priority
643                          * ones.
644                          */
645                         ath6kl_htc_tx_from_queue(target, endpoint);
646                         spin_lock_bh(&target->tx_lock);
647                 }
648                 spin_unlock_bh(&target->tx_lock);
649         }
650 }
651
652 static int htc_setup_tx_complete(struct htc_target *target)
653 {
654         struct htc_packet *send_pkt = NULL;
655         int status;
656
657         send_pkt = htc_get_control_buf(target, true);
658
659         if (!send_pkt)
660                 return -ENOMEM;
661
662         if (target->htc_tgt_ver >= HTC_VERSION_2P1) {
663                 struct htc_setup_comp_ext_msg *setup_comp_ext;
664                 u32 flags = 0;
665
666                 setup_comp_ext =
667                     (struct htc_setup_comp_ext_msg *)send_pkt->buf;
668                 memset(setup_comp_ext, 0, sizeof(*setup_comp_ext));
669                 setup_comp_ext->msg_id =
670                         cpu_to_le16(HTC_MSG_SETUP_COMPLETE_EX_ID);
671
672                 if (target->msg_per_bndl_max > 0) {
673                         /* Indicate HTC bundling to the target */
674                         flags |= HTC_SETUP_COMP_FLG_RX_BNDL_EN;
675                         setup_comp_ext->msg_per_rxbndl =
676                                                 target->msg_per_bndl_max;
677                 }
678
679                 memcpy(&setup_comp_ext->flags, &flags,
680                        sizeof(setup_comp_ext->flags));
681                 set_htc_pkt_info(send_pkt, NULL, (u8 *) setup_comp_ext,
682                                        sizeof(struct htc_setup_comp_ext_msg),
683                                        ENDPOINT_0, HTC_SERVICE_TX_PACKET_TAG);
684
685         } else {
686                 struct htc_setup_comp_msg *setup_comp;
687                 setup_comp = (struct htc_setup_comp_msg *)send_pkt->buf;
688                 memset(setup_comp, 0, sizeof(struct htc_setup_comp_msg));
689                 setup_comp->msg_id = cpu_to_le16(HTC_MSG_SETUP_COMPLETE_ID);
690                 set_htc_pkt_info(send_pkt, NULL, (u8 *) setup_comp,
691                                        sizeof(struct htc_setup_comp_msg),
692                                        ENDPOINT_0, HTC_SERVICE_TX_PACKET_TAG);
693         }
694
695         /* we want synchronous operation */
696         send_pkt->completion = NULL;
697         ath6kl_htc_tx_prep_pkt(send_pkt, 0, 0, 0);
698         status = ath6kl_htc_tx_issue(target, send_pkt);
699
700         if (send_pkt != NULL)
701                 htc_reclaim_txctrl_buf(target, send_pkt);
702
703         return status;
704 }
705
706 void ath6kl_htc_set_credit_dist(struct htc_target *target,
707                                 struct htc_credit_state_info *cred_dist_cntxt,
708                                 u16 srvc_pri_order[], int list_len)
709 {
710         struct htc_endpoint *endpoint;
711         int i, ep;
712
713         target->cred_dist_cntxt = cred_dist_cntxt;
714
715         list_add_tail(&target->endpoint[ENDPOINT_0].cred_dist.list,
716                       &target->cred_dist_list);
717
718         for (i = 0; i < list_len; i++) {
719                 for (ep = ENDPOINT_1; ep < ENDPOINT_MAX; ep++) {
720                         endpoint = &target->endpoint[ep];
721                         if (endpoint->svc_id == srvc_pri_order[i]) {
722                                 list_add_tail(&endpoint->cred_dist.list,
723                                               &target->cred_dist_list);
724                                 break;
725                         }
726                 }
727                 if (ep >= ENDPOINT_MAX) {
728                         WARN_ON(1);
729                         return;
730                 }
731         }
732 }
733
734 int ath6kl_htc_tx(struct htc_target *target, struct htc_packet *packet)
735 {
736         struct htc_endpoint *endpoint;
737         struct list_head queue;
738
739         ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
740                    "htc_tx: ep id: %d, buf: 0x%p, len: %d\n",
741                    packet->endpoint, packet->buf, packet->act_len);
742
743         if (packet->endpoint >= ENDPOINT_MAX) {
744                 WARN_ON(1);
745                 return -EINVAL;
746         }
747
748         endpoint = &target->endpoint[packet->endpoint];
749
750         if (!ath6kl_htc_tx_try(target, endpoint, packet)) {
751                 packet->status = (target->htc_flags & HTC_OP_STATE_STOPPING) ?
752                                  -ECANCELED : -ENOSPC;
753                 INIT_LIST_HEAD(&queue);
754                 list_add(&packet->list, &queue);
755                 htc_tx_complete(endpoint, &queue);
756         }
757
758         return 0;
759 }
760
761 /* flush endpoint TX queue */
762 void ath6kl_htc_flush_txep(struct htc_target *target,
763                            enum htc_endpoint_id eid, u16 tag)
764 {
765         struct htc_packet *packet, *tmp_pkt;
766         struct list_head discard_q, container;
767         struct htc_endpoint *endpoint = &target->endpoint[eid];
768
769         if (!endpoint->svc_id) {
770                 WARN_ON(1);
771                 return;
772         }
773
774         /* initialize the discard queue */
775         INIT_LIST_HEAD(&discard_q);
776
777         spin_lock_bh(&target->tx_lock);
778
779         list_for_each_entry_safe(packet, tmp_pkt, &endpoint->txq, list) {
780                 if ((tag == HTC_TX_PACKET_TAG_ALL) ||
781                     (tag == packet->info.tx.tag))
782                         list_move_tail(&packet->list, &discard_q);
783         }
784
785         spin_unlock_bh(&target->tx_lock);
786
787         list_for_each_entry_safe(packet, tmp_pkt, &discard_q, list) {
788                 packet->status = -ECANCELED;
789                 list_del(&packet->list);
790                 ath6kl_dbg(ATH6KL_DBG_TRC,
791                         "flushing tx pkt:0x%p, len:%d, ep:%d tag:0x%X\n",
792                         packet, packet->act_len,
793                         packet->endpoint, packet->info.tx.tag);
794
795                 INIT_LIST_HEAD(&container);
796                 list_add_tail(&packet->list, &container);
797                 htc_tx_complete(endpoint, &container);
798         }
799
800 }
801
802 static void ath6kl_htc_flush_txep_all(struct htc_target *target)
803 {
804         struct htc_endpoint *endpoint;
805         int i;
806
807         dump_cred_dist_stats(target);
808
809         for (i = ENDPOINT_0; i < ENDPOINT_MAX; i++) {
810                 endpoint = &target->endpoint[i];
811                 if (endpoint->svc_id == 0)
812                         /* not in use.. */
813                         continue;
814                 ath6kl_htc_flush_txep(target, i, HTC_TX_PACKET_TAG_ALL);
815         }
816 }
817
818 void ath6kl_htc_indicate_activity_change(struct htc_target *target,
819                                          enum htc_endpoint_id eid, bool active)
820 {
821         struct htc_endpoint *endpoint = &target->endpoint[eid];
822         bool dist = false;
823
824         if (endpoint->svc_id == 0) {
825                 WARN_ON(1);
826                 return;
827         }
828
829         spin_lock_bh(&target->tx_lock);
830
831         if (active) {
832                 if (!(endpoint->cred_dist.dist_flags & HTC_EP_ACTIVE)) {
833                         endpoint->cred_dist.dist_flags |= HTC_EP_ACTIVE;
834                         dist = true;
835                 }
836         } else {
837                 if (endpoint->cred_dist.dist_flags & HTC_EP_ACTIVE) {
838                         endpoint->cred_dist.dist_flags &= ~HTC_EP_ACTIVE;
839                         dist = true;
840                 }
841         }
842
843         if (dist) {
844                 endpoint->cred_dist.txq_depth =
845                         get_queue_depth(&endpoint->txq);
846
847                 ath6kl_dbg(ATH6KL_DBG_HTC_SEND, "ctxt:0x%p dist:0x%p\n",
848                            target->cred_dist_cntxt, &target->cred_dist_list);
849
850                 ath6k_credit_distribute(target->cred_dist_cntxt,
851                                         &target->cred_dist_list,
852                                         HTC_CREDIT_DIST_ACTIVITY_CHANGE);
853         }
854
855         spin_unlock_bh(&target->tx_lock);
856
857         if (dist && !active)
858                 htc_chk_ep_txq(target);
859 }
860
861 /* HTC Rx */
862
863 static inline void ath6kl_htc_rx_update_stats(struct htc_endpoint *endpoint,
864                                               int n_look_ahds)
865 {
866         endpoint->ep_st.rx_pkts++;
867         if (n_look_ahds == 1)
868                 endpoint->ep_st.rx_lkahds++;
869         else if (n_look_ahds > 1)
870                 endpoint->ep_st.rx_bundle_lkahd++;
871 }
872
873 static inline bool htc_valid_rx_frame_len(struct htc_target *target,
874                                           enum htc_endpoint_id eid, int len)
875 {
876         return (eid == target->dev->ar->ctrl_ep) ?
877                 len <= ATH6KL_BUFFER_SIZE : len <= ATH6KL_AMSDU_BUFFER_SIZE;
878 }
879
880 static int htc_add_rxbuf(struct htc_target *target, struct htc_packet *packet)
881 {
882         struct list_head queue;
883
884         INIT_LIST_HEAD(&queue);
885         list_add_tail(&packet->list, &queue);
886         return ath6kl_htc_add_rxbuf_multiple(target, &queue);
887 }
888
889 static void htc_reclaim_rxbuf(struct htc_target *target,
890                               struct htc_packet *packet,
891                               struct htc_endpoint *ep)
892 {
893         if (packet->info.rx.rx_flags & HTC_RX_PKT_NO_RECYCLE) {
894                 htc_rxpkt_reset(packet);
895                 packet->status = -ECANCELED;
896                 ep->ep_cb.rx(ep->target, packet);
897         } else {
898                 htc_rxpkt_reset(packet);
899                 htc_add_rxbuf((void *)(target), packet);
900         }
901 }
902
903 static void reclaim_rx_ctrl_buf(struct htc_target *target,
904                                 struct htc_packet *packet)
905 {
906         spin_lock_bh(&target->htc_lock);
907         list_add_tail(&packet->list, &target->free_ctrl_rxbuf);
908         spin_unlock_bh(&target->htc_lock);
909 }
910
911 static int ath6kl_htc_rx_packet(struct htc_target *target,
912                                 struct htc_packet *packet,
913                                 u32 rx_len)
914 {
915         struct ath6kl_device *dev = target->dev;
916         u32 padded_len;
917         int status;
918
919         padded_len = CALC_TXRX_PADDED_LEN(target, rx_len);
920
921         if (padded_len > packet->buf_len) {
922                 ath6kl_err("not enough receive space for packet - padlen:%d recvlen:%d bufferlen:%d\n",
923                            padded_len, rx_len, packet->buf_len);
924                 return -ENOMEM;
925         }
926
927         ath6kl_dbg(ATH6KL_DBG_HTC_RECV,
928                    "dev_rx_pkt (0x%p : hdr:0x%X) padded len: %d mbox:0x%X (mode:%s)\n",
929                    packet, packet->info.rx.exp_hdr,
930                    padded_len, dev->ar->mbox_info.htc_addr, "sync");
931
932         status = hif_read_write_sync(dev->ar,
933                                      dev->ar->mbox_info.htc_addr,
934                                      packet->buf, padded_len,
935                                      HIF_RD_SYNC_BLOCK_FIX);
936
937         packet->status = status;
938
939         return status;
940 }
941
942 /*
943  * optimization for recv packets, we can indicate a
944  * "hint" that there are more  single-packets to fetch
945  * on this endpoint.
946  */
947 static void ath6kl_htc_rx_set_indicate(u32 lk_ahd,
948                                        struct htc_endpoint *endpoint,
949                                        struct htc_packet *packet)
950 {
951         struct htc_frame_hdr *htc_hdr = (struct htc_frame_hdr *)&lk_ahd;
952
953         if (htc_hdr->eid == packet->endpoint) {
954                 if (!list_empty(&endpoint->rx_bufq))
955                         packet->info.rx.indicat_flags |=
956                                         HTC_RX_FLAGS_INDICATE_MORE_PKTS;
957         }
958 }
959
960 static void ath6kl_htc_rx_chk_water_mark(struct htc_endpoint *endpoint)
961 {
962         struct htc_ep_callbacks ep_cb = endpoint->ep_cb;
963
964         if (ep_cb.rx_refill_thresh > 0) {
965                 spin_lock_bh(&endpoint->target->rx_lock);
966                 if (get_queue_depth(&endpoint->rx_bufq)
967                     < ep_cb.rx_refill_thresh) {
968                         spin_unlock_bh(&endpoint->target->rx_lock);
969                         ep_cb.rx_refill(endpoint->target, endpoint->eid);
970                         return;
971                 }
972                 spin_unlock_bh(&endpoint->target->rx_lock);
973         }
974 }
975
976 /* This function is called with rx_lock held */
977 static int ath6kl_htc_rx_setup(struct htc_target *target,
978                                struct htc_endpoint *ep,
979                                u32 *lk_ahds, struct list_head *queue, int n_msg)
980 {
981         struct htc_packet *packet;
982         /* FIXME: type of lk_ahds can't be right */
983         struct htc_frame_hdr *htc_hdr = (struct htc_frame_hdr *)lk_ahds;
984         struct htc_ep_callbacks ep_cb;
985         int status = 0, j, full_len;
986         bool no_recycle;
987
988         full_len = CALC_TXRX_PADDED_LEN(target,
989                                         le16_to_cpu(htc_hdr->payld_len) +
990                                         sizeof(*htc_hdr));
991
992         if (!htc_valid_rx_frame_len(target, ep->eid, full_len)) {
993                 ath6kl_warn("Rx buffer requested with invalid length\n");
994                 return -EINVAL;
995         }
996
997         ep_cb = ep->ep_cb;
998         for (j = 0; j < n_msg; j++) {
999
1000                 /*
1001                  * Reset flag, any packets allocated using the
1002                  * rx_alloc() API cannot be recycled on
1003                  * cleanup,they must be explicitly returned.
1004                  */
1005                 no_recycle = false;
1006
1007                 if (ep_cb.rx_allocthresh &&
1008                     (full_len > ep_cb.rx_alloc_thresh)) {
1009                         ep->ep_st.rx_alloc_thresh_hit += 1;
1010                         ep->ep_st.rxalloc_thresh_byte +=
1011                                 le16_to_cpu(htc_hdr->payld_len);
1012
1013                         spin_unlock_bh(&target->rx_lock);
1014                         no_recycle = true;
1015
1016                         packet = ep_cb.rx_allocthresh(ep->target, ep->eid,
1017                                                       full_len);
1018                         spin_lock_bh(&target->rx_lock);
1019                 } else {
1020                         /* refill handler is being used */
1021                         if (list_empty(&ep->rx_bufq)) {
1022                                 if (ep_cb.rx_refill) {
1023                                         spin_unlock_bh(&target->rx_lock);
1024                                         ep_cb.rx_refill(ep->target, ep->eid);
1025                                         spin_lock_bh(&target->rx_lock);
1026                                 }
1027                         }
1028
1029                         if (list_empty(&ep->rx_bufq))
1030                                 packet = NULL;
1031                         else {
1032                                 packet = list_first_entry(&ep->rx_bufq,
1033                                                 struct htc_packet, list);
1034                                 list_del(&packet->list);
1035                         }
1036                 }
1037
1038                 if (!packet) {
1039                         target->rx_st_flags |= HTC_RECV_WAIT_BUFFERS;
1040                         target->ep_waiting = ep->eid;
1041                         return -ENOSPC;
1042                 }
1043
1044                 /* clear flags */
1045                 packet->info.rx.rx_flags = 0;
1046                 packet->info.rx.indicat_flags = 0;
1047                 packet->status = 0;
1048
1049                 if (no_recycle)
1050                         /*
1051                          * flag that these packets cannot be
1052                          * recycled, they have to be returned to
1053                          * the user
1054                          */
1055                         packet->info.rx.rx_flags |= HTC_RX_PKT_NO_RECYCLE;
1056
1057                 /* Caller needs to free this upon any failure */
1058                 list_add_tail(&packet->list, queue);
1059
1060                 if (target->htc_flags & HTC_OP_STATE_STOPPING) {
1061                         status = -ECANCELED;
1062                         break;
1063                 }
1064
1065                 if (j) {
1066                         packet->info.rx.rx_flags |= HTC_RX_PKT_REFRESH_HDR;
1067                         packet->info.rx.exp_hdr = 0xFFFFFFFF;
1068                 } else
1069                         /* set expected look ahead */
1070                         packet->info.rx.exp_hdr = *lk_ahds;
1071
1072                 packet->act_len = le16_to_cpu(htc_hdr->payld_len) +
1073                         HTC_HDR_LENGTH;
1074         }
1075
1076         return status;
1077 }
1078
1079 static int ath6kl_htc_rx_alloc(struct htc_target *target,
1080                                u32 lk_ahds[], int msg,
1081                                struct htc_endpoint *endpoint,
1082                                struct list_head *queue)
1083 {
1084         int status = 0;
1085         struct htc_packet *packet, *tmp_pkt;
1086         struct htc_frame_hdr *htc_hdr;
1087         int i, n_msg;
1088
1089         spin_lock_bh(&target->rx_lock);
1090
1091         for (i = 0; i < msg; i++) {
1092
1093                 htc_hdr = (struct htc_frame_hdr *)&lk_ahds[i];
1094
1095                 if (htc_hdr->eid >= ENDPOINT_MAX) {
1096                         ath6kl_err("invalid ep in look-ahead: %d\n",
1097                                    htc_hdr->eid);
1098                         status = -ENOMEM;
1099                         break;
1100                 }
1101
1102                 if (htc_hdr->eid != endpoint->eid) {
1103                         ath6kl_err("invalid ep in look-ahead: %d should be : %d (index:%d)\n",
1104                                    htc_hdr->eid, endpoint->eid, i);
1105                         status = -ENOMEM;
1106                         break;
1107                 }
1108
1109                 if (le16_to_cpu(htc_hdr->payld_len) > HTC_MAX_PAYLOAD_LENGTH) {
1110                         ath6kl_err("payload len %d exceeds max htc : %d !\n",
1111                                    htc_hdr->payld_len,
1112                                    (u32) HTC_MAX_PAYLOAD_LENGTH);
1113                         status = -ENOMEM;
1114                         break;
1115                 }
1116
1117                 if (endpoint->svc_id == 0) {
1118                         ath6kl_err("ep %d is not connected !\n", htc_hdr->eid);
1119                         status = -ENOMEM;
1120                         break;
1121                 }
1122
1123                 if (htc_hdr->flags & HTC_FLG_RX_BNDL_CNT) {
1124                         /*
1125                          * HTC header indicates that every packet to follow
1126                          * has the same padded length so that it can be
1127                          * optimally fetched as a full bundle.
1128                          */
1129                         n_msg = (htc_hdr->flags & HTC_FLG_RX_BNDL_CNT) >>
1130                                 HTC_FLG_RX_BNDL_CNT_S;
1131
1132                         /* the count doesn't include the starter frame */
1133                         n_msg++;
1134                         if (n_msg > target->msg_per_bndl_max) {
1135                                 status = -ENOMEM;
1136                                 break;
1137                         }
1138
1139                         endpoint->ep_st.rx_bundle_from_hdr += 1;
1140                         ath6kl_dbg(ATH6KL_DBG_HTC_RECV,
1141                                    "htc hdr indicates :%d msg can be fetched as a bundle\n",
1142                                    n_msg);
1143                 } else
1144                         /* HTC header only indicates 1 message to fetch */
1145                         n_msg = 1;
1146
1147                 /* Setup packet buffers for each message */
1148                 status = ath6kl_htc_rx_setup(target, endpoint, &lk_ahds[i],
1149                                              queue, n_msg);
1150
1151                 /*
1152                  * This is due to unavailabilty of buffers to rx entire data.
1153                  * Return no error so that free buffers from queue can be used
1154                  * to receive partial data.
1155                  */
1156                 if (status == -ENOSPC) {
1157                         spin_unlock_bh(&target->rx_lock);
1158                         return 0;
1159                 }
1160
1161                 if (status)
1162                         break;
1163         }
1164
1165         spin_unlock_bh(&target->rx_lock);
1166
1167         if (status) {
1168                 list_for_each_entry_safe(packet, tmp_pkt, queue, list) {
1169                         list_del(&packet->list);
1170                         htc_reclaim_rxbuf(target, packet,
1171                                           &target->endpoint[packet->endpoint]);
1172                 }
1173         }
1174
1175         return status;
1176 }
1177
1178 static void htc_ctrl_rx(struct htc_target *context, struct htc_packet *packets)
1179 {
1180         if (packets->endpoint != ENDPOINT_0) {
1181                 WARN_ON(1);
1182                 return;
1183         }
1184
1185         if (packets->status == -ECANCELED) {
1186                 reclaim_rx_ctrl_buf(context, packets);
1187                 return;
1188         }
1189
1190         if (packets->act_len > 0) {
1191                 ath6kl_err("htc_ctrl_rx, got message with len:%zu\n",
1192                         packets->act_len + HTC_HDR_LENGTH);
1193
1194                 ath6kl_dbg_dump(ATH6KL_DBG_RAW_BYTES,
1195                                 "Unexpected ENDPOINT 0 Message", "",
1196                                 packets->buf - HTC_HDR_LENGTH,
1197                                 packets->act_len + HTC_HDR_LENGTH);
1198         }
1199
1200         htc_reclaim_rxbuf(context, packets, &context->endpoint[0]);
1201 }
1202
1203 static void htc_proc_cred_rpt(struct htc_target *target,
1204                               struct htc_credit_report *rpt,
1205                               int n_entries,
1206                               enum htc_endpoint_id from_ep)
1207 {
1208         struct htc_endpoint *endpoint;
1209         int tot_credits = 0, i;
1210         bool dist = false;
1211
1212         ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
1213                    "htc_proc_cred_rpt, credit report entries:%d\n", n_entries);
1214
1215         spin_lock_bh(&target->tx_lock);
1216
1217         for (i = 0; i < n_entries; i++, rpt++) {
1218                 if (rpt->eid >= ENDPOINT_MAX) {
1219                         WARN_ON(1);
1220                         spin_unlock_bh(&target->tx_lock);
1221                         return;
1222                 }
1223
1224                 endpoint = &target->endpoint[rpt->eid];
1225
1226                 ath6kl_dbg(ATH6KL_DBG_HTC_SEND, " ep %d got %d credits\n",
1227                         rpt->eid, rpt->credits);
1228
1229                 endpoint->ep_st.tx_cred_rpt += 1;
1230                 endpoint->ep_st.cred_retnd += rpt->credits;
1231
1232                 if (from_ep == rpt->eid) {
1233                         /*
1234                          * This credit report arrived on the same endpoint
1235                          * indicating it arrived in an RX packet.
1236                          */
1237                         endpoint->ep_st.cred_from_rx += rpt->credits;
1238                         endpoint->ep_st.cred_rpt_from_rx += 1;
1239                 } else if (from_ep == ENDPOINT_0) {
1240                         /* credit arrived on endpoint 0 as a NULL message */
1241                         endpoint->ep_st.cred_from_ep0 += rpt->credits;
1242                         endpoint->ep_st.cred_rpt_ep0 += 1;
1243                 } else {
1244                         endpoint->ep_st.cred_from_other += rpt->credits;
1245                         endpoint->ep_st.cred_rpt_from_other += 1;
1246                 }
1247
1248                 if (rpt->eid == ENDPOINT_0)
1249                         /* always give endpoint 0 credits back */
1250                         endpoint->cred_dist.credits += rpt->credits;
1251                 else {
1252                         endpoint->cred_dist.cred_to_dist += rpt->credits;
1253                         dist = true;
1254                 }
1255
1256                 /*
1257                  * Refresh tx depth for distribution function that will
1258                  * recover these credits NOTE: this is only valid when
1259                  * there are credits to recover!
1260                  */
1261                 endpoint->cred_dist.txq_depth =
1262                         get_queue_depth(&endpoint->txq);
1263
1264                 tot_credits += rpt->credits;
1265         }
1266
1267         ath6kl_dbg(ATH6KL_DBG_HTC_SEND,
1268                    "report indicated %d credits to distribute\n",
1269                    tot_credits);
1270
1271         if (dist) {
1272                 /*
1273                  * This was a credit return based on a completed send
1274                  * operations note, this is done with the lock held
1275                  */
1276                 ath6kl_dbg(ATH6KL_DBG_HTC_SEND, "ctxt:0x%p dist:0x%p\n",
1277                            target->cred_dist_cntxt, &target->cred_dist_list);
1278
1279                 ath6k_credit_distribute(target->cred_dist_cntxt,
1280                                         &target->cred_dist_list,
1281                                         HTC_CREDIT_DIST_SEND_COMPLETE);
1282         }
1283
1284         spin_unlock_bh(&target->tx_lock);
1285
1286         if (tot_credits)
1287                 htc_chk_ep_txq(target);
1288 }
1289
1290 static int htc_parse_trailer(struct htc_target *target,
1291                              struct htc_record_hdr *record,
1292                              u8 *record_buf, u32 *next_lk_ahds,
1293                              enum htc_endpoint_id endpoint,
1294                              int *n_lk_ahds)
1295 {
1296         struct htc_bundle_lkahd_rpt *bundle_lkahd_rpt;
1297         struct htc_lookahead_report *lk_ahd;
1298         int len;
1299
1300         switch (record->rec_id) {
1301         case HTC_RECORD_CREDITS:
1302                 len = record->len / sizeof(struct htc_credit_report);
1303                 if (!len) {
1304                         WARN_ON(1);
1305                         return -EINVAL;
1306                 }
1307
1308                 htc_proc_cred_rpt(target,
1309                                   (struct htc_credit_report *) record_buf,
1310                                   len, endpoint);
1311                 break;
1312         case HTC_RECORD_LOOKAHEAD:
1313                 len = record->len / sizeof(*lk_ahd);
1314                 if (!len) {
1315                         WARN_ON(1);
1316                         return -EINVAL;
1317                 }
1318
1319                 lk_ahd = (struct htc_lookahead_report *) record_buf;
1320                 if ((lk_ahd->pre_valid == ((~lk_ahd->post_valid) & 0xFF))
1321                     && next_lk_ahds) {
1322
1323                         ath6kl_dbg(ATH6KL_DBG_HTC_RECV,
1324                                    "lk_ahd report found (pre valid:0x%X, post valid:0x%X)\n",
1325                                    lk_ahd->pre_valid, lk_ahd->post_valid);
1326
1327                         /* look ahead bytes are valid, copy them over */
1328                         memcpy((u8 *)&next_lk_ahds[0], lk_ahd->lk_ahd, 4);
1329
1330                         ath6kl_dbg_dump(ATH6KL_DBG_RAW_BYTES, "Next Look Ahead",
1331                                         "", next_lk_ahds, 4);
1332
1333                         *n_lk_ahds = 1;
1334                 }
1335                 break;
1336         case HTC_RECORD_LOOKAHEAD_BUNDLE:
1337                 len = record->len / sizeof(*bundle_lkahd_rpt);
1338                 if (!len || (len > HTC_HOST_MAX_MSG_PER_BUNDLE)) {
1339                         WARN_ON(1);
1340                         return -EINVAL;
1341                 }
1342
1343                 if (next_lk_ahds) {
1344                         int i;
1345
1346                         bundle_lkahd_rpt =
1347                                 (struct htc_bundle_lkahd_rpt *) record_buf;
1348
1349                         ath6kl_dbg_dump(ATH6KL_DBG_RAW_BYTES, "Bundle lk_ahd",
1350                                         "", record_buf, record->len);
1351
1352                         for (i = 0; i < len; i++) {
1353                                 memcpy((u8 *)&next_lk_ahds[i],
1354                                        bundle_lkahd_rpt->lk_ahd, 4);
1355                                 bundle_lkahd_rpt++;
1356                         }
1357
1358                         *n_lk_ahds = i;
1359                 }
1360                 break;
1361         default:
1362                 ath6kl_err("unhandled record: id:%d len:%d\n",
1363                            record->rec_id, record->len);
1364                 break;
1365         }
1366
1367         return 0;
1368
1369 }
1370
1371 static int htc_proc_trailer(struct htc_target *target,
1372                             u8 *buf, int len, u32 *next_lk_ahds,
1373                             int *n_lk_ahds, enum htc_endpoint_id endpoint)
1374 {
1375         struct htc_record_hdr *record;
1376         int orig_len;
1377         int status;
1378         u8 *record_buf;
1379         u8 *orig_buf;
1380
1381         ath6kl_dbg(ATH6KL_DBG_HTC_RECV, "+htc_proc_trailer (len:%d)\n", len);
1382
1383         ath6kl_dbg_dump(ATH6KL_DBG_RAW_BYTES, "Recv Trailer", "",
1384                         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
1420         if (status)
1421                 ath6kl_dbg_dump(ATH6KL_DBG_RAW_BYTES, "BAD Recv Trailer",
1422                                 "", orig_buf, orig_len);
1423
1424         return status;
1425 }
1426
1427 static int ath6kl_htc_rx_process_hdr(struct htc_target *target,
1428                                      struct htc_packet *packet,
1429                                      u32 *next_lkahds, int *n_lkahds)
1430 {
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", "htc ",
1440                         packet->buf, 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) {
1481                 ath6kl_err("%s(): lk_ahd mismatch! (pPkt:0x%p flags:0x%X)\n",
1482                            __func__, packet, packet->info.rx.rx_flags);
1483                 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) {
1494                         ath6kl_err("%s(): invalid hdr (payload len should be :%d, CB[0] is:%d)\n",
1495                                    __func__, payload_len, htc_hdr->ctrl[0]);
1496                         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
1519 fail_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
1534 static void ath6kl_htc_rx_complete(struct htc_endpoint *endpoint,
1535                                    struct htc_packet *packet)
1536 {
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
1543 static 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)
1547 {
1548         struct hif_scatter_req *scat_req;
1549         struct htc_packet *packet;
1550         int rem_space = target->max_rx_bndl_sz;
1551         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                  */
1568                 ath6kl_warn("%s(): partial bundle detected num:%d , %d\n",
1569                             __func__, get_queue_depth(rxq), n_scat_pkt);
1570         }
1571
1572         len = 0;
1573
1574         ath6kl_dbg(ATH6KL_DBG_HTC_RECV,
1575                    "%s(): (numpackets: %d , actual : %d)\n",
1576                    __func__, get_queue_depth(rxq), n_scat_pkt);
1577
1578         scat_req = hif_scatter_req_get(target->dev->ar);
1579
1580         if (scat_req == NULL)
1581                 goto fail_rx_pkt;
1582
1583         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
1589                 pad_len = CALC_TXRX_PADDED_LEN(target,
1590                                                    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
1631 fail_rx_pkt:
1632
1633         return status;
1634 }
1635
1636 static 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)
1640 {
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                 ep = &target->endpoint[packet->endpoint];
1647
1648                 /* process header for each of the recv packet */
1649                 status = ath6kl_htc_rx_process_hdr(target, packet, lk_ahds,
1650                                                    n_lk_ahd);
1651                 if (status)
1652                         return status;
1653
1654                 list_del(&packet->list);
1655
1656                 if (list_empty(comp_pktq)) {
1657                         /*
1658                          * Last packet's more packet flag is set
1659                          * based on the lookahead.
1660                          */
1661                         if (*n_lk_ahd > 0)
1662                                 ath6kl_htc_rx_set_indicate(lk_ahds[0],
1663                                                            ep, packet);
1664                 } else
1665                         /*
1666                          * Packets in a bundle automatically have
1667                          * this flag set.
1668                          */
1669                         packet->info.rx.indicat_flags |=
1670                                 HTC_RX_FLAGS_INDICATE_MORE_PKTS;
1671
1672                 ath6kl_htc_rx_update_stats(ep, *n_lk_ahd);
1673
1674                 if (packet->info.rx.rx_flags & HTC_RX_PKT_PART_OF_BUNDLE)
1675                         ep->ep_st.rx_bundl += 1;
1676
1677                 ath6kl_htc_rx_complete(ep, packet);
1678         }
1679
1680         return status;
1681 }
1682
1683 static int ath6kl_htc_rx_fetch(struct htc_target *target,
1684                                struct list_head *rx_pktq,
1685                                struct list_head *comp_pktq)
1686 {
1687         int fetched_pkts;
1688         bool part_bundle = false;
1689         int status = 0;
1690
1691         /* now go fetch the list of HTC packets */
1692         while (!list_empty(rx_pktq)) {
1693                 fetched_pkts = 0;
1694
1695                 if (target->rx_bndl_enable && (get_queue_depth(rx_pktq) > 1)) {
1696                         /*
1697                          * There are enough packets to attempt a
1698                          * bundle transfer and recv bundling is
1699                          * allowed.
1700                          */
1701                         status = ath6kl_htc_rx_bundle(target, rx_pktq,
1702                                                       comp_pktq,
1703                                                       &fetched_pkts,
1704                                                       part_bundle);
1705                         if (status)
1706                                 return status;
1707
1708                         if (!list_empty(rx_pktq))
1709                                 part_bundle = true;
1710                 }
1711
1712                 if (!fetched_pkts) {
1713                         struct htc_packet *packet;
1714
1715                         packet = list_first_entry(rx_pktq, struct htc_packet,
1716                                                    list);
1717
1718                         list_del(&packet->list);
1719
1720                         /* fully synchronous */
1721                         packet->completion = NULL;
1722
1723                         if (!list_empty(rx_pktq))
1724                                 /*
1725                                  * look_aheads in all packet
1726                                  * except the last one in the
1727                                  * bundle must be ignored
1728                                  */
1729                                 packet->info.rx.rx_flags |=
1730                                         HTC_RX_PKT_IGNORE_LOOKAHEAD;
1731
1732                         /* go fetch the packet */
1733                         status = ath6kl_htc_rx_packet(target, packet,
1734                                                       packet->act_len);
1735                         if (status)
1736                                 return status;
1737
1738                         list_add_tail(&packet->list, comp_pktq);
1739                 }
1740         }
1741
1742         return status;
1743 }
1744
1745 int ath6kl_htc_rxmsg_pending_handler(struct htc_target *target,
1746                                      u32 msg_look_ahead[], int *num_pkts)
1747 {
1748         struct htc_packet *packets, *tmp_pkt;
1749         struct htc_endpoint *endpoint;
1750         struct list_head rx_pktq, comp_pktq;
1751         int status = 0;
1752         u32 look_aheads[HTC_HOST_MAX_MSG_PER_BUNDLE];
1753         int num_look_ahead = 1;
1754         enum htc_endpoint_id id;
1755         int n_fetched = 0;
1756
1757         *num_pkts = 0;
1758
1759         /*
1760          * On first entry copy the look_aheads into our temp array for
1761          * processing
1762          */
1763         memcpy(look_aheads, msg_look_ahead, sizeof(look_aheads));
1764
1765         while (true) {
1766
1767                 /*
1768                  * First lookahead sets the expected endpoint IDs for all
1769                  * packets in a bundle.
1770                  */
1771                 id = ((struct htc_frame_hdr *)&look_aheads[0])->eid;
1772                 endpoint = &target->endpoint[id];
1773
1774                 if (id >= ENDPOINT_MAX) {
1775                         ath6kl_err("MsgPend, invalid endpoint in look-ahead: %d\n",
1776                                    id);
1777                         status = -ENOMEM;
1778                         break;
1779                 }
1780
1781                 INIT_LIST_HEAD(&rx_pktq);
1782                 INIT_LIST_HEAD(&comp_pktq);
1783
1784                 /*
1785                  * Try to allocate as many HTC RX packets indicated by the
1786                  * look_aheads.
1787                  */
1788                 status = ath6kl_htc_rx_alloc(target, look_aheads,
1789                                              num_look_ahead, endpoint,
1790                                              &rx_pktq);
1791                 if (status)
1792                         break;
1793
1794                 if (get_queue_depth(&rx_pktq) >= 2)
1795                         /*
1796                          * A recv bundle was detected, force IRQ status
1797                          * re-check again
1798                          */
1799                         target->chk_irq_status_cnt = 1;
1800
1801                 n_fetched += get_queue_depth(&rx_pktq);
1802
1803                 num_look_ahead = 0;
1804
1805                 status = ath6kl_htc_rx_fetch(target, &rx_pktq, &comp_pktq);
1806
1807                 if (!status)
1808                         ath6kl_htc_rx_chk_water_mark(endpoint);
1809
1810                 /* Process fetched packets */
1811                 status = ath6kl_htc_rx_process_packets(target, &comp_pktq,
1812                                                        look_aheads,
1813                                                        &num_look_ahead);
1814
1815                 if (!num_look_ahead || status)
1816                         break;
1817
1818                 /*
1819                  * For SYNCH processing, if we get here, we are running
1820                  * through the loop again due to a detected lookahead. Set
1821                  * flag that we should re-check IRQ status registers again
1822                  * before leaving IRQ processing, this can net better
1823                  * performance in high throughput situations.
1824                  */
1825                 target->chk_irq_status_cnt = 1;
1826         }
1827
1828         if (status) {
1829                 ath6kl_err("failed to get pending recv messages: %d\n",
1830                            status);
1831                 /*
1832                  * Cleanup any packets we allocated but didn't use to
1833                  * actually fetch any packets.
1834                  */
1835                 list_for_each_entry_safe(packets, tmp_pkt, &rx_pktq, list) {
1836                         list_del(&packets->list);
1837                         htc_reclaim_rxbuf(target, packets,
1838                                         &target->endpoint[packets->endpoint]);
1839                 }
1840
1841                 /* cleanup any packets in sync completion queue */
1842                 list_for_each_entry_safe(packets, tmp_pkt, &comp_pktq, list) {
1843                         list_del(&packets->list);
1844                         htc_reclaim_rxbuf(target, packets,
1845                                           &target->endpoint[packets->endpoint]);
1846                 }
1847
1848                 if (target->htc_flags & HTC_OP_STATE_STOPPING) {
1849                         ath6kl_warn("host is going to stop blocking receiver for htc_stop\n");
1850                         ath6kldev_rx_control(target->dev, false);
1851                 }
1852         }
1853
1854         /*
1855          * Before leaving, check to see if host ran out of buffers and
1856          * needs to stop the receiver.
1857          */
1858         if (target->rx_st_flags & HTC_RECV_WAIT_BUFFERS) {
1859                 ath6kl_warn("host has no rx buffers blocking receiver to prevent overrun\n");
1860                 ath6kldev_rx_control(target->dev, false);
1861         }
1862         *num_pkts = n_fetched;
1863
1864         return status;
1865 }
1866
1867 /*
1868  * Synchronously wait for a control message from the target,
1869  * This function is used at initialization time ONLY.  At init messages
1870  * on ENDPOINT 0 are expected.
1871  */
1872 static struct htc_packet *htc_wait_for_ctrl_msg(struct htc_target *target)
1873 {
1874         struct htc_packet *packet = NULL;
1875         struct htc_frame_hdr *htc_hdr;
1876         u32 look_ahead;
1877
1878         if (ath6kldev_poll_mboxmsg_rx(target->dev, &look_ahead,
1879                                HTC_TARGET_RESPONSE_TIMEOUT))
1880                 return NULL;
1881
1882         ath6kl_dbg(ATH6KL_DBG_HTC_RECV,
1883                 "htc_wait_for_ctrl_msg: look_ahead : 0x%X\n", look_ahead);
1884
1885         htc_hdr = (struct htc_frame_hdr *)&look_ahead;
1886
1887         if (htc_hdr->eid != ENDPOINT_0)
1888                 return NULL;
1889
1890         packet = htc_get_control_buf(target, false);
1891
1892         if (!packet)
1893                 return NULL;
1894
1895         packet->info.rx.rx_flags = 0;
1896         packet->info.rx.exp_hdr = look_ahead;
1897         packet->act_len = le16_to_cpu(htc_hdr->payld_len) + HTC_HDR_LENGTH;
1898
1899         if (packet->act_len > packet->buf_len)
1900                 goto fail_ctrl_rx;
1901
1902         /* we want synchronous operation */
1903         packet->completion = NULL;
1904
1905         /* get the message from the device, this will block */
1906         if (ath6kl_htc_rx_packet(target, packet, packet->act_len))
1907                 goto fail_ctrl_rx;
1908
1909         /* process receive header */
1910         packet->status = ath6kl_htc_rx_process_hdr(target, packet, NULL, NULL);
1911
1912         if (packet->status) {
1913                 ath6kl_err("htc_wait_for_ctrl_msg, ath6kl_htc_rx_process_hdr failed (status = %d)\n",
1914                            packet->status);
1915                 goto fail_ctrl_rx;
1916         }
1917
1918         return packet;
1919
1920 fail_ctrl_rx:
1921         if (packet != NULL) {
1922                 htc_rxpkt_reset(packet);
1923                 reclaim_rx_ctrl_buf(target, packet);
1924         }
1925
1926         return NULL;
1927 }
1928
1929 int ath6kl_htc_add_rxbuf_multiple(struct htc_target *target,
1930                                   struct list_head *pkt_queue)
1931 {
1932         struct htc_endpoint *endpoint;
1933         struct htc_packet *first_pkt;
1934         bool rx_unblock = false;
1935         int status = 0, depth;
1936
1937         if (list_empty(pkt_queue))
1938                 return -ENOMEM;
1939
1940         first_pkt = list_first_entry(pkt_queue, struct htc_packet, list);
1941
1942         if (first_pkt->endpoint >= ENDPOINT_MAX)
1943                 return status;
1944
1945         depth = get_queue_depth(pkt_queue);
1946
1947         ath6kl_dbg(ATH6KL_DBG_HTC_RECV,
1948                 "htc_add_rxbuf_multiple: ep id: %d, cnt:%d, len: %d\n",
1949                 first_pkt->endpoint, depth, first_pkt->buf_len);
1950
1951         endpoint = &target->endpoint[first_pkt->endpoint];
1952
1953         if (target->htc_flags & HTC_OP_STATE_STOPPING) {
1954                 struct htc_packet *packet, *tmp_pkt;
1955
1956                 /* walk through queue and mark each one canceled */
1957                 list_for_each_entry_safe(packet, tmp_pkt, pkt_queue, list) {
1958                         packet->status = -ECANCELED;
1959                         list_del(&packet->list);
1960                         ath6kl_htc_rx_complete(endpoint, packet);
1961                 }
1962
1963                 return status;
1964         }
1965
1966         spin_lock_bh(&target->rx_lock);
1967
1968         list_splice_tail_init(pkt_queue, &endpoint->rx_bufq);
1969
1970         /* check if we are blocked waiting for a new buffer */
1971         if (target->rx_st_flags & HTC_RECV_WAIT_BUFFERS) {
1972                 if (target->ep_waiting == first_pkt->endpoint) {
1973                         ath6kl_dbg(ATH6KL_DBG_HTC_RECV,
1974                                 "receiver was blocked on ep:%d, unblocking.\n",
1975                                 target->ep_waiting);
1976                         target->rx_st_flags &= ~HTC_RECV_WAIT_BUFFERS;
1977                         target->ep_waiting = ENDPOINT_MAX;
1978                         rx_unblock = true;
1979                 }
1980         }
1981
1982         spin_unlock_bh(&target->rx_lock);
1983
1984         if (rx_unblock && !(target->htc_flags & HTC_OP_STATE_STOPPING))
1985                 /* TODO : implement a buffer threshold count? */
1986                 ath6kldev_rx_control(target->dev, true);
1987
1988         return status;
1989 }
1990
1991 void ath6kl_htc_flush_rx_buf(struct htc_target *target)
1992 {
1993         struct htc_endpoint *endpoint;
1994         struct htc_packet *packet, *tmp_pkt;
1995         int i;
1996
1997         for (i = ENDPOINT_0; i < ENDPOINT_MAX; i++) {
1998                 endpoint = &target->endpoint[i];
1999                 if (!endpoint->svc_id)
2000                         /* not in use.. */
2001                         continue;
2002
2003                 spin_lock_bh(&target->rx_lock);
2004                 list_for_each_entry_safe(packet, tmp_pkt,
2005                                          &endpoint->rx_bufq, list) {
2006                         list_del(&packet->list);
2007                         spin_unlock_bh(&target->rx_lock);
2008                         ath6kl_dbg(ATH6KL_DBG_HTC_RECV,
2009                                    "flushing rx pkt:0x%p, len:%d, ep:%d\n",
2010                                    packet, packet->buf_len,
2011                                    packet->endpoint);
2012                         dev_kfree_skb(packet->pkt_cntxt);
2013                         spin_lock_bh(&target->rx_lock);
2014                 }
2015                 spin_unlock_bh(&target->rx_lock);
2016         }
2017 }
2018
2019 int ath6kl_htc_conn_service(struct htc_target *target,
2020                             struct htc_service_connect_req *conn_req,
2021                             struct htc_service_connect_resp *conn_resp)
2022 {
2023         struct htc_packet *rx_pkt = NULL;
2024         struct htc_packet *tx_pkt = NULL;
2025         struct htc_conn_service_resp *resp_msg;
2026         struct htc_conn_service_msg *conn_msg;
2027         struct htc_endpoint *endpoint;
2028         enum htc_endpoint_id assigned_ep = ENDPOINT_MAX;
2029         unsigned int max_msg_sz = 0;
2030         int status = 0;
2031
2032         ath6kl_dbg(ATH6KL_DBG_TRC,
2033                    "htc_conn_service, target:0x%p service id:0x%X\n",
2034                    target, conn_req->svc_id);
2035
2036         if (conn_req->svc_id == HTC_CTRL_RSVD_SVC) {
2037                 /* special case for pseudo control service */
2038                 assigned_ep = ENDPOINT_0;
2039                 max_msg_sz = HTC_MAX_CTRL_MSG_LEN;
2040         } else {
2041                 /* allocate a packet to send to the target */
2042                 tx_pkt = htc_get_control_buf(target, true);
2043
2044                 if (!tx_pkt)
2045                         return -ENOMEM;
2046
2047                 conn_msg = (struct htc_conn_service_msg *)tx_pkt->buf;
2048                 memset(conn_msg, 0, sizeof(*conn_msg));
2049                 conn_msg->msg_id = cpu_to_le16(HTC_MSG_CONN_SVC_ID);
2050                 conn_msg->svc_id = cpu_to_le16(conn_req->svc_id);
2051                 conn_msg->conn_flags = cpu_to_le16(conn_req->conn_flags);
2052
2053                 set_htc_pkt_info(tx_pkt, NULL, (u8 *) conn_msg,
2054                                  sizeof(*conn_msg) + conn_msg->svc_meta_len,
2055                                  ENDPOINT_0, HTC_SERVICE_TX_PACKET_TAG);
2056
2057                 /* we want synchronous operation */
2058                 tx_pkt->completion = NULL;
2059                 ath6kl_htc_tx_prep_pkt(tx_pkt, 0, 0, 0);
2060                 status = ath6kl_htc_tx_issue(target, tx_pkt);
2061
2062                 if (status)
2063                         goto fail_tx;
2064
2065                 /* wait for response */
2066                 rx_pkt = htc_wait_for_ctrl_msg(target);
2067
2068                 if (!rx_pkt) {
2069                         status = -ENOMEM;
2070                         goto fail_tx;
2071                 }
2072
2073                 resp_msg = (struct htc_conn_service_resp *)rx_pkt->buf;
2074
2075                 if ((le16_to_cpu(resp_msg->msg_id) != HTC_MSG_CONN_SVC_RESP_ID)
2076                     || (rx_pkt->act_len < sizeof(*resp_msg))) {
2077                         status = -ENOMEM;
2078                         goto fail_tx;
2079                 }
2080
2081                 conn_resp->resp_code = resp_msg->status;
2082                 /* check response status */
2083                 if (resp_msg->status != HTC_SERVICE_SUCCESS) {
2084                         ath6kl_err("target failed service 0x%X connect request (status:%d)\n",
2085                                    resp_msg->svc_id, resp_msg->status);
2086                         status = -ENOMEM;
2087                         goto fail_tx;
2088                 }
2089
2090                 assigned_ep = (enum htc_endpoint_id)resp_msg->eid;
2091                 max_msg_sz = le16_to_cpu(resp_msg->max_msg_sz);
2092         }
2093
2094         if (assigned_ep >= ENDPOINT_MAX || !max_msg_sz) {
2095                 status = -ENOMEM;
2096                 goto fail_tx;
2097         }
2098
2099         endpoint = &target->endpoint[assigned_ep];
2100         endpoint->eid = assigned_ep;
2101         if (endpoint->svc_id) {
2102                 status = -ENOMEM;
2103                 goto fail_tx;
2104         }
2105
2106         /* return assigned endpoint to caller */
2107         conn_resp->endpoint = assigned_ep;
2108         conn_resp->len_max = max_msg_sz;
2109
2110         /* setup the endpoint */
2111
2112         /* this marks the endpoint in use */
2113         endpoint->svc_id = conn_req->svc_id;
2114
2115         endpoint->max_txq_depth = conn_req->max_txq_depth;
2116         endpoint->len_max = max_msg_sz;
2117         endpoint->ep_cb = conn_req->ep_cb;
2118         endpoint->cred_dist.svc_id = conn_req->svc_id;
2119         endpoint->cred_dist.htc_rsvd = endpoint;
2120         endpoint->cred_dist.endpoint = assigned_ep;
2121         endpoint->cred_dist.cred_sz = target->tgt_cred_sz;
2122
2123         if (conn_req->max_rxmsg_sz) {
2124                 /*
2125                  * Override cred_per_msg calculation, this optimizes
2126                  * the credit-low indications since the host will actually
2127                  * issue smaller messages in the Send path.
2128                  */
2129                 if (conn_req->max_rxmsg_sz > max_msg_sz) {
2130                         status = -ENOMEM;
2131                         goto fail_tx;
2132                 }
2133                 endpoint->cred_dist.cred_per_msg =
2134                     conn_req->max_rxmsg_sz / target->tgt_cred_sz;
2135         } else
2136                 endpoint->cred_dist.cred_per_msg =
2137                     max_msg_sz / target->tgt_cred_sz;
2138
2139         if (!endpoint->cred_dist.cred_per_msg)
2140                 endpoint->cred_dist.cred_per_msg = 1;
2141
2142         /* save local connection flags */
2143         endpoint->conn_flags = conn_req->flags;
2144
2145 fail_tx:
2146         if (tx_pkt)
2147                 htc_reclaim_txctrl_buf(target, tx_pkt);
2148
2149         if (rx_pkt) {
2150                 htc_rxpkt_reset(rx_pkt);
2151                 reclaim_rx_ctrl_buf(target, rx_pkt);
2152         }
2153
2154         return status;
2155 }
2156
2157 static void reset_ep_state(struct htc_target *target)
2158 {
2159         struct htc_endpoint *endpoint;
2160         int i;
2161
2162         for (i = ENDPOINT_0; i < ENDPOINT_MAX; i++) {
2163                 endpoint = &target->endpoint[i];
2164                 memset(&endpoint->cred_dist, 0, sizeof(endpoint->cred_dist));
2165                 endpoint->svc_id = 0;
2166                 endpoint->len_max = 0;
2167                 endpoint->max_txq_depth = 0;
2168                 memset(&endpoint->ep_st, 0,
2169                        sizeof(endpoint->ep_st));
2170                 INIT_LIST_HEAD(&endpoint->rx_bufq);
2171                 INIT_LIST_HEAD(&endpoint->txq);
2172                 endpoint->target = target;
2173         }
2174
2175         /* reset distribution list */
2176         INIT_LIST_HEAD(&target->cred_dist_list);
2177 }
2178
2179 int ath6kl_htc_get_rxbuf_num(struct htc_target *target,
2180                              enum htc_endpoint_id endpoint)
2181 {
2182         int num;
2183
2184         spin_lock_bh(&target->rx_lock);
2185         num = get_queue_depth(&(target->endpoint[endpoint].rx_bufq));
2186         spin_unlock_bh(&target->rx_lock);
2187         return num;
2188 }
2189
2190 static void htc_setup_msg_bndl(struct htc_target *target)
2191 {
2192         /* limit what HTC can handle */
2193         target->msg_per_bndl_max = min(HTC_HOST_MAX_MSG_PER_BUNDLE,
2194                                        target->msg_per_bndl_max);
2195
2196         if (ath6kl_hif_enable_scatter(target->dev->ar)) {
2197                 target->msg_per_bndl_max = 0;
2198                 return;
2199         }
2200
2201         /* limit bundle what the device layer can handle */
2202         target->msg_per_bndl_max = min(target->max_scat_entries,
2203                                        target->msg_per_bndl_max);
2204
2205         ath6kl_dbg(ATH6KL_DBG_TRC,
2206                    "htc bundling allowed. max msg per htc bundle: %d\n",
2207                    target->msg_per_bndl_max);
2208
2209         /* Max rx bundle size is limited by the max tx bundle size */
2210         target->max_rx_bndl_sz = target->max_xfer_szper_scatreq;
2211         /* Max tx bundle size if limited by the extended mbox address range */
2212         target->max_tx_bndl_sz = min(HIF_MBOX0_EXT_WIDTH,
2213                                      target->max_xfer_szper_scatreq);
2214
2215         ath6kl_dbg(ATH6KL_DBG_ANY, "max recv: %d max send: %d\n",
2216                    target->max_rx_bndl_sz, target->max_tx_bndl_sz);
2217
2218         if (target->max_tx_bndl_sz)
2219                 target->tx_bndl_enable = true;
2220
2221         if (target->max_rx_bndl_sz)
2222                 target->rx_bndl_enable = true;
2223
2224         if ((target->tgt_cred_sz % target->block_sz) != 0) {
2225                 ath6kl_warn("credit size: %d is not block aligned! Disabling send bundling\n",
2226                             target->tgt_cred_sz);
2227
2228                 /*
2229                  * Disallow send bundling since the credit size is
2230                  * not aligned to a block size the I/O block
2231                  * padding will spill into the next credit buffer
2232                  * which is fatal.
2233                  */
2234                 target->tx_bndl_enable = false;
2235         }
2236 }
2237
2238 int ath6kl_htc_wait_target(struct htc_target *target)
2239 {
2240         struct htc_packet *packet = NULL;
2241         struct htc_ready_ext_msg *rdy_msg;
2242         struct htc_service_connect_req connect;
2243         struct htc_service_connect_resp resp;
2244         int status;
2245
2246         /* we should be getting 1 control message that the target is ready */
2247         packet = htc_wait_for_ctrl_msg(target);
2248
2249         if (!packet)
2250                 return -ENOMEM;
2251
2252         /* we controlled the buffer creation so it's properly aligned */
2253         rdy_msg = (struct htc_ready_ext_msg *)packet->buf;
2254
2255         if ((le16_to_cpu(rdy_msg->ver2_0_info.msg_id) != HTC_MSG_READY_ID) ||
2256             (packet->act_len < sizeof(struct htc_ready_msg))) {
2257                 status = -ENOMEM;
2258                 goto fail_wait_target;
2259         }
2260
2261         if (!rdy_msg->ver2_0_info.cred_cnt || !rdy_msg->ver2_0_info.cred_sz) {
2262                 status = -ENOMEM;
2263                 goto fail_wait_target;
2264         }
2265
2266         target->tgt_creds = le16_to_cpu(rdy_msg->ver2_0_info.cred_cnt);
2267         target->tgt_cred_sz = le16_to_cpu(rdy_msg->ver2_0_info.cred_sz);
2268
2269         ath6kl_dbg(ATH6KL_DBG_HTC_RECV,
2270                    "target ready: credits: %d credit size: %d\n",
2271                    target->tgt_creds, target->tgt_cred_sz);
2272
2273         /* check if this is an extended ready message */
2274         if (packet->act_len >= sizeof(struct htc_ready_ext_msg)) {
2275                 /* this is an extended message */
2276                 target->htc_tgt_ver = rdy_msg->htc_ver;
2277                 target->msg_per_bndl_max = rdy_msg->msg_per_htc_bndl;
2278         } else {
2279                 /* legacy */
2280                 target->htc_tgt_ver = HTC_VERSION_2P0;
2281                 target->msg_per_bndl_max = 0;
2282         }
2283
2284         ath6kl_dbg(ATH6KL_DBG_TRC, "using htc protocol version : %s (%d)\n",
2285                   (target->htc_tgt_ver == HTC_VERSION_2P0) ? "2.0" : ">= 2.1",
2286                   target->htc_tgt_ver);
2287
2288         if (target->msg_per_bndl_max > 0)
2289                 htc_setup_msg_bndl(target);
2290
2291         /* setup our pseudo HTC control endpoint connection */
2292         memset(&connect, 0, sizeof(connect));
2293         memset(&resp, 0, sizeof(resp));
2294         connect.ep_cb.rx = htc_ctrl_rx;
2295         connect.ep_cb.rx_refill = NULL;
2296         connect.ep_cb.tx_full = NULL;
2297         connect.max_txq_depth = NUM_CONTROL_BUFFERS;
2298         connect.svc_id = HTC_CTRL_RSVD_SVC;
2299
2300         /* connect fake service */
2301         status = ath6kl_htc_conn_service((void *)target, &connect, &resp);
2302
2303         if (status)
2304                 ath6kl_hif_cleanup_scatter(target->dev->ar);
2305
2306 fail_wait_target:
2307         if (packet) {
2308                 htc_rxpkt_reset(packet);
2309                 reclaim_rx_ctrl_buf(target, packet);
2310         }
2311
2312         return status;
2313 }
2314
2315 /*
2316  * Start HTC, enable interrupts and let the target know
2317  * host has finished setup.
2318  */
2319 int ath6kl_htc_start(struct htc_target *target)
2320 {
2321         struct htc_packet *packet;
2322         int status;
2323
2324         /* Disable interrupts at the chip level */
2325         ath6kldev_disable_intrs(target->dev);
2326
2327         target->htc_flags = 0;
2328         target->rx_st_flags = 0;
2329
2330         /* Push control receive buffers into htc control endpoint */
2331         while ((packet = htc_get_control_buf(target, false)) != NULL) {
2332                 status = htc_add_rxbuf(target, packet);
2333                 if (status)
2334                         return status;
2335         }
2336
2337         /* NOTE: the first entry in the distribution list is ENDPOINT_0 */
2338         ath6k_credit_init(target->cred_dist_cntxt, &target->cred_dist_list,
2339                           target->tgt_creds);
2340
2341         dump_cred_dist_stats(target);
2342
2343         /* Indicate to the target of the setup completion */
2344         status = htc_setup_tx_complete(target);
2345
2346         if (status)
2347                 return status;
2348
2349         /* unmask interrupts */
2350         status = ath6kldev_unmask_intrs(target->dev);
2351
2352         if (status)
2353                 ath6kl_htc_stop(target);
2354
2355         return status;
2356 }
2357
2358 /* htc_stop: stop interrupt reception, and flush all queued buffers */
2359 void ath6kl_htc_stop(struct htc_target *target)
2360 {
2361         spin_lock_bh(&target->htc_lock);
2362         target->htc_flags |= HTC_OP_STATE_STOPPING;
2363         spin_unlock_bh(&target->htc_lock);
2364
2365         /*
2366          * Masking interrupts is a synchronous operation, when this
2367          * function returns all pending HIF I/O has completed, we can
2368          * safely flush the queues.
2369          */
2370         ath6kldev_mask_intrs(target->dev);
2371
2372         ath6kl_htc_flush_txep_all(target);
2373
2374         ath6kl_htc_flush_rx_buf(target);
2375
2376         reset_ep_state(target);
2377 }
2378
2379 void *ath6kl_htc_create(struct ath6kl *ar)
2380 {
2381         struct htc_target *target = NULL;
2382         struct htc_packet *packet;
2383         int status = 0, i = 0;
2384         u32 block_size, ctrl_bufsz;
2385
2386         target = kzalloc(sizeof(*target), GFP_KERNEL);
2387         if (!target) {
2388                 ath6kl_err("unable to allocate memory\n");
2389                 return NULL;
2390         }
2391
2392         target->dev = kzalloc(sizeof(*target->dev), GFP_KERNEL);
2393         if (!target->dev) {
2394                 ath6kl_err("unable to allocate memory\n");
2395                 status = -ENOMEM;
2396                 goto fail_create_htc;
2397         }
2398
2399         spin_lock_init(&target->htc_lock);
2400         spin_lock_init(&target->rx_lock);
2401         spin_lock_init(&target->tx_lock);
2402
2403         INIT_LIST_HEAD(&target->free_ctrl_txbuf);
2404         INIT_LIST_HEAD(&target->free_ctrl_rxbuf);
2405         INIT_LIST_HEAD(&target->cred_dist_list);
2406
2407         target->dev->ar = ar;
2408         target->dev->htc_cnxt = target;
2409         target->ep_waiting = ENDPOINT_MAX;
2410
2411         reset_ep_state(target);
2412
2413         status = ath6kldev_setup(target->dev);
2414
2415         if (status)
2416                 goto fail_create_htc;
2417
2418         block_size = ar->mbox_info.block_size;
2419
2420         ctrl_bufsz = (block_size > HTC_MAX_CTRL_MSG_LEN) ?
2421                       (block_size + HTC_HDR_LENGTH) :
2422                       (HTC_MAX_CTRL_MSG_LEN + HTC_HDR_LENGTH);
2423
2424         for (i = 0; i < NUM_CONTROL_BUFFERS; i++) {
2425                 packet = kzalloc(sizeof(*packet), GFP_KERNEL);
2426                 if (!packet)
2427                         break;
2428
2429                 packet->buf_start = kzalloc(ctrl_bufsz, GFP_KERNEL);
2430                 if (!packet->buf_start) {
2431                         kfree(packet);
2432                         break;
2433                 }
2434
2435                 packet->buf_len = ctrl_bufsz;
2436                 if (i < NUM_CONTROL_RX_BUFFERS) {
2437                         packet->act_len = 0;
2438                         packet->buf = packet->buf_start;
2439                         packet->endpoint = ENDPOINT_0;
2440                         list_add_tail(&packet->list, &target->free_ctrl_rxbuf);
2441                 } else
2442                         list_add_tail(&packet->list, &target->free_ctrl_txbuf);
2443         }
2444
2445 fail_create_htc:
2446         if (i != NUM_CONTROL_BUFFERS || status) {
2447                 if (target) {
2448                         ath6kl_htc_cleanup(target);
2449                         target = NULL;
2450                 }
2451         }
2452
2453         return target;
2454 }
2455
2456 /* cleanup the HTC instance */
2457 void ath6kl_htc_cleanup(struct htc_target *target)
2458 {
2459         struct htc_packet *packet, *tmp_packet;
2460
2461         ath6kl_hif_cleanup_scatter(target->dev->ar);
2462
2463         list_for_each_entry_safe(packet, tmp_packet,
2464                         &target->free_ctrl_txbuf, list) {
2465                 list_del(&packet->list);
2466                 kfree(packet->buf_start);
2467                 kfree(packet);
2468         }
2469
2470         list_for_each_entry_safe(packet, tmp_packet,
2471                         &target->free_ctrl_rxbuf, list) {
2472                 list_del(&packet->list);
2473                 kfree(packet->buf_start);
2474                 kfree(packet);
2475         }
2476
2477         kfree(target->dev);
2478         kfree(target);
2479 }