htc_send.c 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082
  1. /*
  2. * Copyright (c) 2013-2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. #include "htc_debug.h"
  27. #include "htc_internal.h"
  28. #include <qdf_mem.h> /* qdf_mem_malloc */
  29. #include <qdf_nbuf.h> /* qdf_nbuf_t */
  30. /* #define USB_HIF_SINGLE_PIPE_DATA_SCHED */
  31. /* #ifdef USB_HIF_SINGLE_PIPE_DATA_SCHED */
  32. #define DATA_EP_SIZE 4
  33. /* #endif */
  34. #define HTC_DATA_RESOURCE_THRS 256
  35. #define HTC_DATA_MINDESC_PERPACKET 2
  36. typedef enum _HTC_SEND_QUEUE_RESULT {
  37. HTC_SEND_QUEUE_OK = 0, /* packet was queued */
  38. HTC_SEND_QUEUE_DROP = 1, /* this packet should be dropped */
  39. } HTC_SEND_QUEUE_RESULT;
  40. #ifndef DEBUG_CREDIT
  41. #define DEBUG_CREDIT 0
  42. #endif
  43. #if DEBUG_CREDIT
  44. /* bit mask to enable debug certain endpoint */
  45. static unsigned ep_debug_mask =
  46. (1 << ENDPOINT_0) | (1 << ENDPOINT_1) | (1 << ENDPOINT_2);
  47. #endif
  48. /* HTC Control Path Credit History */
  49. uint32_t g_htc_credit_history_idx = 0;
  50. HTC_CREDIT_HISTORY htc_credit_history_buffer[HTC_CREDIT_HISTORY_MAX];
  51. /**
  52. * htc_credit_record() - records tx que state & credit transactions
  53. * @type: type of echange can be HTC_REQUEST_CREDIT
  54. * or HTC_PROCESS_CREDIT_REPORT
  55. * @tx_credits: current number of tx_credits
  56. * @htc_tx_queue_depth: current hct tx queue depth
  57. *
  58. * This function records the credits and pending commands whenever a command is
  59. * sent or credits are returned. Call this after the credits have been updated
  60. * according to the transaction. Call this before dequeing commands.
  61. *
  62. * Consider making this function accept an HTC_ENDPOINT and find the current
  63. * credits and queue depth itself.
  64. *
  65. * Consider moving the LOCK_HTC_CREDIT(target); logic into this function as well.
  66. */
  67. void htc_credit_record(htc_credit_exchange_type type, uint32_t tx_credit,
  68. uint32_t htc_tx_queue_depth) {
  69. if (HTC_CREDIT_HISTORY_MAX <= g_htc_credit_history_idx)
  70. g_htc_credit_history_idx = 0;
  71. htc_credit_history_buffer[g_htc_credit_history_idx].type = type;
  72. htc_credit_history_buffer[g_htc_credit_history_idx].time =
  73. qdf_get_log_timestamp();
  74. htc_credit_history_buffer[g_htc_credit_history_idx].tx_credit =
  75. tx_credit;
  76. htc_credit_history_buffer[g_htc_credit_history_idx].htc_tx_queue_depth =
  77. htc_tx_queue_depth;
  78. g_htc_credit_history_idx++;
  79. #ifdef QCA_WIFI_3_0_EMU
  80. if (type == HTC_REQUEST_CREDIT)
  81. printk("\nrequest_credits-> current_credit %d, pending commands %d\n",
  82. tx_credit, htc_tx_queue_depth);
  83. else if (type == HTC_PROCESS_CREDIT_REPORT)
  84. printk("\ncredit_report<- current_credit %d, pending commands %d\n",
  85. tx_credit, htc_tx_queue_depth);
  86. #endif
  87. }
  88. void htc_dump_counter_info(HTC_HANDLE HTCHandle)
  89. {
  90. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  91. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  92. ("\n%s: ce_send_cnt = %d, TX_comp_cnt = %d\n",
  93. __func__, target->ce_send_cnt, target->TX_comp_cnt));
  94. }
  95. void htc_get_control_endpoint_tx_host_credits(HTC_HANDLE HTCHandle, int *credits)
  96. {
  97. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  98. HTC_ENDPOINT *pEndpoint;
  99. int i;
  100. if (!credits || !target) {
  101. AR_DEBUG_PRINTF(ATH_DEBUG_ERR, ("%s: invalid args", __func__));
  102. return;
  103. }
  104. *credits = 0;
  105. LOCK_HTC_TX(target);
  106. for (i = 0; i < ENDPOINT_MAX; i++) {
  107. pEndpoint = &target->endpoint[i];
  108. if (pEndpoint->service_id == WMI_CONTROL_SVC) {
  109. *credits = pEndpoint->TxCredits;
  110. break;
  111. }
  112. }
  113. UNLOCK_HTC_TX(target);
  114. }
  115. static inline void restore_tx_packet(HTC_TARGET *target, HTC_PACKET *pPacket)
  116. {
  117. if (pPacket->PktInfo.AsTx.Flags & HTC_TX_PACKET_FLAG_FIXUP_NETBUF) {
  118. qdf_nbuf_t netbuf = GET_HTC_PACKET_NET_BUF_CONTEXT(pPacket);
  119. qdf_nbuf_unmap(target->osdev, netbuf, QDF_DMA_TO_DEVICE);
  120. qdf_nbuf_pull_head(netbuf, sizeof(HTC_FRAME_HDR));
  121. pPacket->PktInfo.AsTx.Flags &= ~HTC_TX_PACKET_FLAG_FIXUP_NETBUF;
  122. }
  123. }
  124. static void do_send_completion(HTC_ENDPOINT *pEndpoint,
  125. HTC_PACKET_QUEUE *pQueueToIndicate)
  126. {
  127. do {
  128. if (HTC_QUEUE_EMPTY(pQueueToIndicate)) {
  129. /* nothing to indicate */
  130. break;
  131. }
  132. if (pEndpoint->EpCallBacks.EpTxCompleteMultiple != NULL) {
  133. AR_DEBUG_PRINTF(ATH_DEBUG_SEND,
  134. (" HTC calling ep %d, send complete multiple callback (%d pkts) \n",
  135. pEndpoint->Id,
  136. HTC_PACKET_QUEUE_DEPTH
  137. (pQueueToIndicate)));
  138. /* a multiple send complete handler is being used, pass the queue to the handler */
  139. pEndpoint->EpCallBacks.EpTxCompleteMultiple(pEndpoint->
  140. EpCallBacks.
  141. pContext,
  142. pQueueToIndicate);
  143. /* all packets are now owned by the callback, reset queue to be safe */
  144. INIT_HTC_PACKET_QUEUE(pQueueToIndicate);
  145. } else {
  146. HTC_PACKET *pPacket;
  147. /* using legacy EpTxComplete */
  148. do {
  149. pPacket = htc_packet_dequeue(pQueueToIndicate);
  150. AR_DEBUG_PRINTF(ATH_DEBUG_SEND,
  151. (" HTC calling ep %d send complete callback on packet %p \n",
  152. pEndpoint->Id, pPacket));
  153. pEndpoint->EpCallBacks.EpTxComplete(pEndpoint->
  154. EpCallBacks.
  155. pContext,
  156. pPacket);
  157. } while (!HTC_QUEUE_EMPTY(pQueueToIndicate));
  158. }
  159. } while (false);
  160. }
  161. static void send_packet_completion(HTC_TARGET *target, HTC_PACKET *pPacket)
  162. {
  163. HTC_ENDPOINT *pEndpoint = &target->endpoint[pPacket->Endpoint];
  164. HTC_PACKET_QUEUE container;
  165. restore_tx_packet(target, pPacket);
  166. INIT_HTC_PACKET_QUEUE_AND_ADD(&container, pPacket);
  167. /* do completion */
  168. do_send_completion(pEndpoint, &container);
  169. }
  170. void htc_send_complete_check_cleanup(void *context)
  171. {
  172. HTC_ENDPOINT *pEndpoint = (HTC_ENDPOINT *) context;
  173. htc_send_complete_check(pEndpoint, 1);
  174. }
  175. HTC_PACKET *allocate_htc_bundle_packet(HTC_TARGET *target)
  176. {
  177. HTC_PACKET *pPacket;
  178. HTC_PACKET_QUEUE *pQueueSave;
  179. qdf_nbuf_t netbuf;
  180. LOCK_HTC_TX(target);
  181. if (NULL == target->pBundleFreeList) {
  182. UNLOCK_HTC_TX(target);
  183. netbuf = qdf_nbuf_alloc(NULL,
  184. target->MaxMsgsPerHTCBundle *
  185. target->TargetCreditSize, 0, 4, false);
  186. AR_DEBUG_ASSERT(netbuf);
  187. if (!netbuf) {
  188. return NULL;
  189. }
  190. pPacket = qdf_mem_malloc(sizeof(HTC_PACKET));
  191. AR_DEBUG_ASSERT(pPacket);
  192. if (!pPacket) {
  193. qdf_nbuf_free(netbuf);
  194. return NULL;
  195. }
  196. pQueueSave = qdf_mem_malloc(sizeof(HTC_PACKET_QUEUE));
  197. AR_DEBUG_ASSERT(pQueueSave);
  198. if (!pQueueSave) {
  199. qdf_nbuf_free(netbuf);
  200. qdf_mem_free(pPacket);
  201. return NULL;
  202. }
  203. INIT_HTC_PACKET_QUEUE(pQueueSave);
  204. pPacket->pContext = pQueueSave;
  205. SET_HTC_PACKET_NET_BUF_CONTEXT(pPacket, netbuf);
  206. pPacket->pBuffer = qdf_nbuf_data(netbuf);
  207. pPacket->BufferLength = qdf_nbuf_len(netbuf);
  208. /* store the original head room so that we can restore this when we "free" the packet */
  209. /* free packet puts the packet back on the free list */
  210. pPacket->netbufOrigHeadRoom = qdf_nbuf_headroom(netbuf);
  211. return pPacket;
  212. }
  213. /* already done malloc - restore from free list */
  214. pPacket = target->pBundleFreeList;
  215. AR_DEBUG_ASSERT(pPacket);
  216. if (!pPacket) {
  217. UNLOCK_HTC_TX(target);
  218. return NULL;
  219. }
  220. target->pBundleFreeList = (HTC_PACKET *) pPacket->ListLink.pNext;
  221. UNLOCK_HTC_TX(target);
  222. pPacket->ListLink.pNext = NULL;
  223. return pPacket;
  224. }
  225. void free_htc_bundle_packet(HTC_TARGET *target, HTC_PACKET *pPacket)
  226. {
  227. uint32_t curentHeadRoom;
  228. qdf_nbuf_t netbuf;
  229. HTC_PACKET_QUEUE *pQueueSave;
  230. netbuf = GET_HTC_PACKET_NET_BUF_CONTEXT(pPacket);
  231. AR_DEBUG_ASSERT(netbuf);
  232. if (!netbuf) {
  233. AR_DEBUG_PRINTF(ATH_DEBUG_ERR, ("\n%s: Invalid netbuf in HTC "
  234. "Packet\n", __func__));
  235. return;
  236. }
  237. /* HIF adds data to the headroom section of the nbuf, restore the original */
  238. /* size. If this is not done, headroom keeps shrinking with every HIF send */
  239. /* and eventually HIF ends up doing another malloc big enough to store the */
  240. /* data + its header */
  241. curentHeadRoom = qdf_nbuf_headroom(netbuf);
  242. qdf_nbuf_pull_head(netbuf,
  243. pPacket->netbufOrigHeadRoom - curentHeadRoom);
  244. qdf_nbuf_trim_tail(netbuf, qdf_nbuf_len(netbuf));
  245. /* restore the pBuffer pointer. HIF changes this */
  246. pPacket->pBuffer = qdf_nbuf_data(netbuf);
  247. pPacket->BufferLength = qdf_nbuf_len(netbuf);
  248. /* restore queue */
  249. pQueueSave = (HTC_PACKET_QUEUE *) pPacket->pContext;
  250. AR_DEBUG_ASSERT(pQueueSave);
  251. INIT_HTC_PACKET_QUEUE(pQueueSave);
  252. LOCK_HTC_TX(target);
  253. if (target->pBundleFreeList == NULL) {
  254. target->pBundleFreeList = pPacket;
  255. pPacket->ListLink.pNext = NULL;
  256. } else {
  257. pPacket->ListLink.pNext = (DL_LIST *) target->pBundleFreeList;
  258. target->pBundleFreeList = pPacket;
  259. }
  260. UNLOCK_HTC_TX(target);
  261. }
  262. #if defined(DEBUG_HL_LOGGING) && defined(CONFIG_HL_SUPPORT)
  263. /**
  264. * htc_send_update_tx_bundle_stats() - update tx bundle stats depends
  265. * on max bundle size
  266. * @target: hif context
  267. * @data_len: tx data len
  268. * @TxCreditSize: endpoint tx credit size
  269. *
  270. * Return: None
  271. */
  272. static inline void
  273. htc_send_update_tx_bundle_stats(HTC_TARGET *target,
  274. qdf_size_t data_len,
  275. int TxCreditSize)
  276. {
  277. if ((data_len / TxCreditSize) <= HTC_MAX_MSG_PER_BUNDLE_TX)
  278. target->tx_bundle_stats[(data_len / TxCreditSize) - 1]++;
  279. return;
  280. }
  281. /**
  282. * htc_issue_tx_bundle_stats_inc() - increment in tx bundle stats
  283. * on max bundle size
  284. * @target: hif context
  285. *
  286. * Return: None
  287. */
  288. static inline void
  289. htc_issue_tx_bundle_stats_inc(HTC_TARGET *target)
  290. {
  291. target->tx_bundle_stats[0]++;
  292. }
  293. #else
  294. static inline void
  295. htc_send_update_tx_bundle_stats(HTC_TARGET *target,
  296. qdf_size_t data_len,
  297. int TxCreditSize)
  298. {
  299. return;
  300. }
  301. static inline void
  302. htc_issue_tx_bundle_stats_inc(HTC_TARGET *target)
  303. {
  304. return;
  305. }
  306. #endif
  307. #if defined(HIF_USB) || defined(HIF_SDIO)
  308. #ifdef ENABLE_BUNDLE_TX
  309. static A_STATUS htc_send_bundled_netbuf(HTC_TARGET *target,
  310. HTC_ENDPOINT *pEndpoint,
  311. unsigned char *pBundleBuffer,
  312. HTC_PACKET *pPacketTx)
  313. {
  314. qdf_size_t data_len;
  315. A_STATUS status;
  316. qdf_nbuf_t bundleBuf;
  317. uint32_t data_attr = 0;
  318. bundleBuf = GET_HTC_PACKET_NET_BUF_CONTEXT(pPacketTx);
  319. data_len = pBundleBuffer - qdf_nbuf_data(bundleBuf);
  320. qdf_nbuf_put_tail(bundleBuf, data_len);
  321. SET_HTC_PACKET_INFO_TX(pPacketTx,
  322. target,
  323. pBundleBuffer,
  324. data_len,
  325. pEndpoint->Id, HTC_TX_PACKET_TAG_BUNDLED);
  326. LOCK_HTC_TX(target);
  327. HTC_PACKET_ENQUEUE(&pEndpoint->TxLookupQueue, pPacketTx);
  328. UNLOCK_HTC_TX(target);
  329. #if DEBUG_BUNDLE
  330. qdf_print(" Send bundle EP%d buffer size:0x%x, total:0x%x, count:%d.\n",
  331. pEndpoint->Id,
  332. pEndpoint->TxCreditSize,
  333. data_len, data_len / pEndpoint->TxCreditSize);
  334. #endif
  335. htc_send_update_tx_bundle_stats(target, data_len,
  336. pEndpoint->TxCreditSize);
  337. status = hif_send_head(target->hif_dev,
  338. pEndpoint->UL_PipeID,
  339. pEndpoint->Id, data_len,
  340. bundleBuf, data_attr);
  341. if (status != A_OK) {
  342. qdf_print("%s:hif_send_head failed(len=%zu).\n", __func__,
  343. data_len);
  344. }
  345. return status;
  346. }
  347. static void htc_issue_packets_bundle(HTC_TARGET *target,
  348. HTC_ENDPOINT *pEndpoint,
  349. HTC_PACKET_QUEUE *pPktQueue)
  350. {
  351. int i, frag_count, nbytes;
  352. qdf_nbuf_t netbuf, bundleBuf;
  353. unsigned char *pBundleBuffer = NULL;
  354. HTC_PACKET *pPacket = NULL, *pPacketTx = NULL;
  355. HTC_FRAME_HDR *pHtcHdr;
  356. int creditPad, creditRemainder, transferLength, bundlesSpaceRemaining =
  357. 0;
  358. HTC_PACKET_QUEUE *pQueueSave = NULL;
  359. bundlesSpaceRemaining =
  360. target->MaxMsgsPerHTCBundle * pEndpoint->TxCreditSize;
  361. pPacketTx = allocate_htc_bundle_packet(target);
  362. if (!pPacketTx) {
  363. /* good time to panic */
  364. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  365. ("allocate_htc_bundle_packet failed \n"));
  366. AR_DEBUG_ASSERT(false);
  367. return;
  368. }
  369. bundleBuf = GET_HTC_PACKET_NET_BUF_CONTEXT(pPacketTx);
  370. pBundleBuffer = qdf_nbuf_data(bundleBuf);
  371. pQueueSave = (HTC_PACKET_QUEUE *) pPacketTx->pContext;
  372. while (1) {
  373. pPacket = htc_packet_dequeue(pPktQueue);
  374. if (pPacket == NULL) {
  375. break;
  376. }
  377. creditPad = 0;
  378. transferLength = pPacket->ActualLength + HTC_HDR_LENGTH;
  379. creditRemainder = transferLength % pEndpoint->TxCreditSize;
  380. if (creditRemainder != 0) {
  381. if (transferLength < pEndpoint->TxCreditSize) {
  382. creditPad =
  383. pEndpoint->TxCreditSize - transferLength;
  384. } else {
  385. creditPad = creditRemainder;
  386. }
  387. transferLength += creditPad;
  388. }
  389. if (bundlesSpaceRemaining < transferLength) {
  390. /* send out previous buffer */
  391. htc_send_bundled_netbuf(target, pEndpoint, pBundleBuffer,
  392. pPacketTx);
  393. if (HTC_PACKET_QUEUE_DEPTH(pPktQueue) <
  394. HTC_MIN_MSG_PER_BUNDLE) {
  395. return;
  396. }
  397. bundlesSpaceRemaining =
  398. target->MaxMsgsPerHTCBundle *
  399. pEndpoint->TxCreditSize;
  400. pPacketTx = allocate_htc_bundle_packet(target);
  401. if (!pPacketTx) {
  402. /* good time to panic */
  403. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  404. ("allocate_htc_bundle_packet failed \n"));
  405. AR_DEBUG_ASSERT(false);
  406. return;
  407. }
  408. bundleBuf = GET_HTC_PACKET_NET_BUF_CONTEXT(pPacketTx);
  409. pBundleBuffer = qdf_nbuf_data(bundleBuf);
  410. pQueueSave = (HTC_PACKET_QUEUE *) pPacketTx->pContext;
  411. }
  412. bundlesSpaceRemaining -= transferLength;
  413. netbuf = GET_HTC_PACKET_NET_BUF_CONTEXT(pPacket);
  414. pHtcHdr = (HTC_FRAME_HDR *) qdf_nbuf_get_frag_vaddr(netbuf, 0);
  415. HTC_WRITE32(pHtcHdr,
  416. SM(pPacket->ActualLength,
  417. HTC_FRAME_HDR_PAYLOADLEN) | SM(pPacket->PktInfo.
  418. AsTx.
  419. SendFlags |
  420. HTC_FLAGS_SEND_BUNDLE,
  421. HTC_FRAME_HDR_FLAGS)
  422. | SM(pPacket->Endpoint, HTC_FRAME_HDR_ENDPOINTID));
  423. HTC_WRITE32((uint32_t *) pHtcHdr + 1,
  424. SM(pPacket->PktInfo.AsTx.SeqNo,
  425. HTC_FRAME_HDR_CONTROLBYTES1) | SM(creditPad,
  426. HTC_FRAME_HDR_RESERVED));
  427. pHtcHdr->reserved = creditPad;
  428. frag_count = qdf_nbuf_get_num_frags(netbuf);
  429. nbytes = pPacket->ActualLength + HTC_HDR_LENGTH;
  430. for (i = 0; i < frag_count && nbytes > 0; i++) {
  431. int frag_len = qdf_nbuf_get_frag_len(netbuf, i);
  432. unsigned char *frag_addr =
  433. qdf_nbuf_get_frag_vaddr(netbuf, i);
  434. if (frag_len > nbytes) {
  435. frag_len = nbytes;
  436. }
  437. qdf_mem_copy(pBundleBuffer, frag_addr, frag_len);
  438. nbytes -= frag_len;
  439. pBundleBuffer += frag_len;
  440. }
  441. HTC_PACKET_ENQUEUE(pQueueSave, pPacket);
  442. pBundleBuffer += creditPad;
  443. }
  444. if (pBundleBuffer != qdf_nbuf_data(bundleBuf)) {
  445. /* send out remaining buffer */
  446. htc_send_bundled_netbuf(target, pEndpoint, pBundleBuffer,
  447. pPacketTx);
  448. } else {
  449. free_htc_bundle_packet(target, pPacketTx);
  450. }
  451. }
  452. #endif /* ENABLE_BUNDLE_TX */
  453. #endif
  454. static A_STATUS htc_issue_packets(HTC_TARGET *target,
  455. HTC_ENDPOINT *pEndpoint,
  456. HTC_PACKET_QUEUE *pPktQueue)
  457. {
  458. A_STATUS status = A_OK;
  459. qdf_nbuf_t netbuf;
  460. HTC_PACKET *pPacket = NULL;
  461. uint16_t payloadLen;
  462. HTC_FRAME_HDR *pHtcHdr;
  463. uint32_t data_attr = 0;
  464. AR_DEBUG_PRINTF(ATH_DEBUG_SEND,
  465. ("+htc_issue_packets: Queue: %p, Pkts %d \n", pPktQueue,
  466. HTC_PACKET_QUEUE_DEPTH(pPktQueue)));
  467. while (true) {
  468. #if defined(HIF_USB) || defined(HIF_SDIO)
  469. #ifdef ENABLE_BUNDLE_TX
  470. if (IS_TX_CREDIT_FLOW_ENABLED(pEndpoint) &&
  471. HTC_ENABLE_BUNDLE(target) &&
  472. HTC_PACKET_QUEUE_DEPTH(pPktQueue) >=
  473. HTC_MIN_MSG_PER_BUNDLE) {
  474. htc_issue_packets_bundle(target, pEndpoint, pPktQueue);
  475. }
  476. #endif
  477. #endif
  478. /* if not bundling or there was a packet that could not be placed in a bundle,
  479. * and send it by normal way
  480. */
  481. pPacket = htc_packet_dequeue(pPktQueue);
  482. if (NULL == pPacket) {
  483. /* local queue is fully drained */
  484. break;
  485. }
  486. netbuf = GET_HTC_PACKET_NET_BUF_CONTEXT(pPacket);
  487. AR_DEBUG_ASSERT(netbuf);
  488. /* Non-credit enabled endpoints have been mapped and setup by now,
  489. * so no need to revisit the HTC headers
  490. */
  491. if (IS_TX_CREDIT_FLOW_ENABLED(pEndpoint)) {
  492. payloadLen = pPacket->ActualLength;
  493. /* setup HTC frame header */
  494. pHtcHdr = (HTC_FRAME_HDR *)
  495. qdf_nbuf_get_frag_vaddr(netbuf, 0);
  496. AR_DEBUG_ASSERT(pHtcHdr);
  497. HTC_WRITE32(pHtcHdr,
  498. SM(payloadLen,
  499. HTC_FRAME_HDR_PAYLOADLEN) | SM(pPacket->
  500. PktInfo.
  501. AsTx.
  502. SendFlags,
  503. HTC_FRAME_HDR_FLAGS)
  504. | SM(pPacket->Endpoint,
  505. HTC_FRAME_HDR_ENDPOINTID));
  506. HTC_WRITE32(((uint32_t *) pHtcHdr) + 1,
  507. SM(pPacket->PktInfo.AsTx.SeqNo,
  508. HTC_FRAME_HDR_CONTROLBYTES1));
  509. /*
  510. * Now that the HTC frame header has been added, the netbuf can be
  511. * mapped. This only applies to non-data frames, since data frames
  512. * were already mapped as they entered into the driver.
  513. * Check the "FIXUP_NETBUF" flag to see whether this is a data netbuf
  514. * that is already mapped, or a non-data netbuf that needs to be
  515. * mapped.
  516. */
  517. if (pPacket->PktInfo.AsTx.
  518. Flags & HTC_TX_PACKET_FLAG_FIXUP_NETBUF) {
  519. qdf_nbuf_map(target->osdev,
  520. GET_HTC_PACKET_NET_BUF_CONTEXT
  521. (pPacket), QDF_DMA_TO_DEVICE);
  522. }
  523. }
  524. LOCK_HTC_TX(target);
  525. /* store in look up queue to match completions */
  526. HTC_PACKET_ENQUEUE(&pEndpoint->TxLookupQueue, pPacket);
  527. INC_HTC_EP_STAT(pEndpoint, TxIssued, 1);
  528. pEndpoint->ul_outstanding_cnt++;
  529. UNLOCK_HTC_TX(target);
  530. hif_send_complete_check(target->hif_dev, pEndpoint->UL_PipeID, false);
  531. status = hif_send_head(target->hif_dev,
  532. pEndpoint->UL_PipeID, pEndpoint->Id,
  533. HTC_HDR_LENGTH + pPacket->ActualLength,
  534. netbuf, data_attr);
  535. #if DEBUG_BUNDLE
  536. qdf_print(" Send single EP%d buffer size:0x%x, total:0x%x.\n",
  537. pEndpoint->Id,
  538. pEndpoint->TxCreditSize,
  539. HTC_HDR_LENGTH + pPacket->ActualLength);
  540. #endif
  541. htc_issue_tx_bundle_stats_inc(target);
  542. target->ce_send_cnt++;
  543. if (qdf_unlikely(A_FAILED(status))) {
  544. if (status != A_NO_RESOURCE) {
  545. /* TODO : if more than 1 endpoint maps to the same PipeID it is possible
  546. * to run out of resources in the HIF layer. Don't emit the error */
  547. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  548. ("hif_send Failed status:%d \n",
  549. status));
  550. }
  551. LOCK_HTC_TX(target);
  552. target->ce_send_cnt--;
  553. pEndpoint->ul_outstanding_cnt--;
  554. HTC_PACKET_REMOVE(&pEndpoint->TxLookupQueue, pPacket);
  555. /* reclaim credits */
  556. #if defined(HIF_USB)
  557. if (pEndpoint->Id >= ENDPOINT_2
  558. && pEndpoint->Id <= ENDPOINT_5)
  559. target->avail_tx_credits +=
  560. pPacket->PktInfo.AsTx.CreditsUsed;
  561. else
  562. pEndpoint->TxCredits +=
  563. pPacket->PktInfo.AsTx.CreditsUsed;
  564. #else
  565. pEndpoint->TxCredits +=
  566. pPacket->PktInfo.AsTx.CreditsUsed;
  567. #endif
  568. /* put it back into the callers queue */
  569. HTC_PACKET_ENQUEUE_TO_HEAD(pPktQueue, pPacket);
  570. UNLOCK_HTC_TX(target);
  571. break;
  572. }
  573. /*
  574. * For HTT messages without a response from fw,
  575. * do the runtime put here.
  576. * otherwise runtime put will be done when the fw response comes
  577. */
  578. if (pPacket->PktInfo.AsTx.Tag == HTC_TX_PACKET_TAG_RUNTIME_PUT)
  579. hif_pm_runtime_put(target->hif_dev);
  580. }
  581. if (qdf_unlikely(A_FAILED(status))) {
  582. #if defined(HIF_USB)
  583. if (pEndpoint->Id >= ENDPOINT_2 && pEndpoint->Id <= ENDPOINT_5)
  584. target->avail_tx_credits +=
  585. pPacket->PktInfo.AsTx.CreditsUsed;
  586. else
  587. pEndpoint->TxCredits +=
  588. pPacket->PktInfo.AsTx.CreditsUsed;
  589. #endif
  590. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  591. ("htc_issue_packets, failed pkt:0x%p status:%d",
  592. pPacket, status));
  593. }
  594. AR_DEBUG_PRINTF(ATH_DEBUG_SEND, ("-htc_issue_packets \n"));
  595. return status;
  596. }
  597. #ifdef FEATURE_RUNTIME_PM
  598. /**
  599. * extract_htc_pm_packtes(): move pm packets from endpoint into queue
  600. * @endpoint: which enpoint to extract packets from
  601. * @queue: a queue to store extracted packets in.
  602. *
  603. * remove pm packets from the endpoint's tx queue.
  604. * queue them into a queue
  605. */
  606. static void extract_htc_pm_packets(HTC_ENDPOINT *endpoint,
  607. HTC_PACKET_QUEUE *queue)
  608. {
  609. HTC_PACKET *packet;
  610. /* only WMI endpoint has power management packets */
  611. if (endpoint->service_id != WMI_CONTROL_SVC)
  612. return;
  613. ITERATE_OVER_LIST_ALLOW_REMOVE(&endpoint->TxQueue.QueueHead, packet,
  614. HTC_PACKET, ListLink) {
  615. if (packet->PktInfo.AsTx.Tag == HTC_TX_PACKET_TAG_AUTO_PM) {
  616. HTC_PACKET_REMOVE(&endpoint->TxQueue, packet);
  617. HTC_PACKET_ENQUEUE(queue, packet);
  618. }
  619. } ITERATE_END
  620. }
  621. /**
  622. * queue_htc_pm_packets(): queue pm packets with priority
  623. * @endpoint: enpoint to queue packets to
  624. * @queue: queue of pm packets to enque
  625. *
  626. * suspend resume packets get special treatment & priority.
  627. * need to queue them at the front of the queue.
  628. */
  629. static void queue_htc_pm_packets(HTC_ENDPOINT *endpoint,
  630. HTC_PACKET_QUEUE *queue)
  631. {
  632. if (endpoint->service_id != WMI_CONTROL_SVC)
  633. return;
  634. HTC_PACKET_QUEUE_TRANSFER_TO_HEAD(&endpoint->TxQueue, queue);
  635. }
  636. #else
  637. static void extract_htc_pm_packets(HTC_ENDPOINT *endpoint,
  638. HTC_PACKET_QUEUE *queue)
  639. {}
  640. static void queue_htc_pm_packets(HTC_ENDPOINT *endpoint,
  641. HTC_PACKET_QUEUE *queue)
  642. {}
  643. #endif
  644. /* get HTC send packets from the TX queue on an endpoint, based on available credits */
  645. void get_htc_send_packets_credit_based(HTC_TARGET *target,
  646. HTC_ENDPOINT *pEndpoint,
  647. HTC_PACKET_QUEUE *pQueue)
  648. {
  649. int creditsRequired;
  650. int remainder;
  651. uint8_t sendFlags;
  652. HTC_PACKET *pPacket;
  653. unsigned int transferLength;
  654. HTC_PACKET_QUEUE *tx_queue;
  655. HTC_PACKET_QUEUE pm_queue;
  656. bool do_pm_get = false;
  657. /****** NOTE : the TX lock is held when this function is called *****************/
  658. AR_DEBUG_PRINTF(ATH_DEBUG_SEND, ("+get_htc_send_packets_credit_based\n"));
  659. INIT_HTC_PACKET_QUEUE(&pm_queue);
  660. extract_htc_pm_packets(pEndpoint, &pm_queue);
  661. if (HTC_QUEUE_EMPTY(&pm_queue)) {
  662. tx_queue = &pEndpoint->TxQueue;
  663. do_pm_get = true;
  664. } else {
  665. tx_queue = &pm_queue;
  666. }
  667. /* loop until we can grab as many packets out of the queue as we can */
  668. while (true) {
  669. if (do_pm_get && hif_pm_runtime_get(target->hif_dev)) {
  670. /* bus suspended, runtime resume issued */
  671. QDF_ASSERT(HTC_PACKET_QUEUE_DEPTH(pQueue) == 0);
  672. break;
  673. }
  674. sendFlags = 0;
  675. /* get packet at head, but don't remove it */
  676. pPacket = htc_get_pkt_at_head(tx_queue);
  677. if (pPacket == NULL) {
  678. if (do_pm_get)
  679. hif_pm_runtime_put(target->hif_dev);
  680. break;
  681. }
  682. AR_DEBUG_PRINTF(ATH_DEBUG_SEND,
  683. (" Got head packet:%p , Queue Depth: %d\n",
  684. pPacket,
  685. HTC_PACKET_QUEUE_DEPTH(tx_queue)));
  686. transferLength = pPacket->ActualLength + HTC_HDR_LENGTH;
  687. if (transferLength <= pEndpoint->TxCreditSize) {
  688. creditsRequired = 1;
  689. } else {
  690. /* figure out how many credits this message requires */
  691. creditsRequired =
  692. transferLength / pEndpoint->TxCreditSize;
  693. remainder = transferLength % pEndpoint->TxCreditSize;
  694. if (remainder) {
  695. creditsRequired++;
  696. }
  697. }
  698. AR_DEBUG_PRINTF(ATH_DEBUG_SEND,
  699. (" Credits Required:%d Got:%d\n",
  700. creditsRequired, pEndpoint->TxCredits));
  701. if (pEndpoint->Id == ENDPOINT_0) {
  702. /* endpoint 0 is special, it always has a credit and does not require credit based
  703. * flow control */
  704. creditsRequired = 0;
  705. #if defined(HIF_USB)
  706. } else if (pEndpoint->Id >= ENDPOINT_2
  707. && pEndpoint->Id <= ENDPOINT_5) {
  708. if (target->avail_tx_credits < creditsRequired)
  709. break;
  710. target->avail_tx_credits -= creditsRequired;
  711. if (target->avail_tx_credits < 9) {
  712. /* tell the target we need credits ASAP! */
  713. sendFlags |= HTC_FLAGS_NEED_CREDIT_UPDATE;
  714. INC_HTC_EP_STAT(pEndpoint,
  715. TxCreditLowIndications, 1);
  716. AR_DEBUG_PRINTF(ATH_DEBUG_SEND,
  717. (" Host Needs Credits \n"));
  718. }
  719. #endif
  720. } else {
  721. if (pEndpoint->TxCredits < creditsRequired) {
  722. #if DEBUG_CREDIT
  723. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  724. (" EP%d, No Credit now. %d < %d\n",
  725. pEndpoint->Id,
  726. pEndpoint->TxCredits,
  727. creditsRequired));
  728. #endif
  729. if (do_pm_get)
  730. hif_pm_runtime_put(target->hif_dev);
  731. break;
  732. }
  733. pEndpoint->TxCredits -= creditsRequired;
  734. INC_HTC_EP_STAT(pEndpoint, TxCreditsConsummed,
  735. creditsRequired);
  736. /* check if we need credits back from the target */
  737. if (pEndpoint->TxCredits <=
  738. pEndpoint->TxCreditsPerMaxMsg) {
  739. /* tell the target we need credits ASAP! */
  740. sendFlags |= HTC_FLAGS_NEED_CREDIT_UPDATE;
  741. if (pEndpoint->service_id == WMI_CONTROL_SVC) {
  742. LOCK_HTC_CREDIT(target);
  743. htc_credit_record(HTC_REQUEST_CREDIT,
  744. pEndpoint->TxCredits,
  745. HTC_PACKET_QUEUE_DEPTH
  746. (tx_queue));
  747. UNLOCK_HTC_CREDIT(target);
  748. }
  749. INC_HTC_EP_STAT(pEndpoint,
  750. TxCreditLowIndications, 1);
  751. #if DEBUG_CREDIT
  752. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  753. (" EP%d Needs Credits\n",
  754. pEndpoint->Id));
  755. #endif
  756. }
  757. }
  758. /* now we can fully dequeue */
  759. pPacket = htc_packet_dequeue(tx_queue);
  760. if (pPacket) {
  761. /* save the number of credits this packet consumed */
  762. pPacket->PktInfo.AsTx.CreditsUsed = creditsRequired;
  763. /* save send flags */
  764. pPacket->PktInfo.AsTx.SendFlags = sendFlags;
  765. /* queue this packet into the caller's queue */
  766. HTC_PACKET_ENQUEUE(pQueue, pPacket);
  767. }
  768. }
  769. if (!HTC_QUEUE_EMPTY(&pm_queue))
  770. queue_htc_pm_packets(pEndpoint, &pm_queue);
  771. AR_DEBUG_PRINTF(ATH_DEBUG_SEND,
  772. ("-get_htc_send_packets_credit_based\n"));
  773. }
  774. void get_htc_send_packets(HTC_TARGET *target,
  775. HTC_ENDPOINT *pEndpoint,
  776. HTC_PACKET_QUEUE *pQueue, int Resources)
  777. {
  778. HTC_PACKET *pPacket;
  779. HTC_PACKET_QUEUE *tx_queue;
  780. HTC_PACKET_QUEUE pm_queue;
  781. bool do_pm_get;
  782. /****** NOTE : the TX lock is held when this function is called *****************/
  783. AR_DEBUG_PRINTF(ATH_DEBUG_SEND,
  784. ("+get_htc_send_packets %d resources\n", Resources));
  785. INIT_HTC_PACKET_QUEUE(&pm_queue);
  786. extract_htc_pm_packets(pEndpoint, &pm_queue);
  787. if (HTC_QUEUE_EMPTY(&pm_queue)) {
  788. tx_queue = &pEndpoint->TxQueue;
  789. do_pm_get = true;
  790. } else {
  791. tx_queue = &pm_queue;
  792. }
  793. /* loop until we can grab as many packets out of the queue as we can */
  794. while (Resources > 0) {
  795. int num_frags;
  796. if (do_pm_get && hif_pm_runtime_get(target->hif_dev)) {
  797. /* bus suspended, runtime resume issued */
  798. QDF_ASSERT(HTC_PACKET_QUEUE_DEPTH(pQueue) == 0);
  799. break;
  800. }
  801. pPacket = htc_packet_dequeue(tx_queue);
  802. if (pPacket == NULL) {
  803. if (do_pm_get)
  804. hif_pm_runtime_put(target->hif_dev);
  805. break;
  806. }
  807. AR_DEBUG_PRINTF(ATH_DEBUG_SEND,
  808. (" Got packet:%p , New Queue Depth: %d\n",
  809. pPacket,
  810. HTC_PACKET_QUEUE_DEPTH(tx_queue)));
  811. /* For non-credit path the sequence number is already embedded
  812. * in the constructed HTC header
  813. */
  814. #if 0
  815. pPacket->PktInfo.AsTx.SeqNo = pEndpoint->SeqNo;
  816. pEndpoint->SeqNo++;
  817. #endif
  818. pPacket->PktInfo.AsTx.SendFlags = 0;
  819. pPacket->PktInfo.AsTx.CreditsUsed = 0;
  820. /* queue this packet into the caller's queue */
  821. HTC_PACKET_ENQUEUE(pQueue, pPacket);
  822. /*
  823. * FIX THIS:
  824. * For now, avoid calling qdf_nbuf_get_num_frags before calling
  825. * qdf_nbuf_map, because the MacOS version of qdf_nbuf_t doesn't
  826. * support qdf_nbuf_get_num_frags until after qdf_nbuf_map has
  827. * been done.
  828. * Assume that the non-data netbufs, i.e. the WMI message netbufs,
  829. * consist of a single fragment.
  830. */
  831. num_frags =
  832. (pPacket->PktInfo.AsTx.
  833. Flags & HTC_TX_PACKET_FLAG_FIXUP_NETBUF) ? 1
  834. /* WMI messages are in a single-fragment network buffer */ :
  835. qdf_nbuf_get_num_frags(GET_HTC_PACKET_NET_BUF_CONTEXT
  836. (pPacket));
  837. Resources -= num_frags;
  838. }
  839. if (!HTC_QUEUE_EMPTY(&pm_queue))
  840. queue_htc_pm_packets(pEndpoint, &pm_queue);
  841. AR_DEBUG_PRINTF(ATH_DEBUG_SEND, ("-get_htc_send_packets\n"));
  842. }
  843. static HTC_SEND_QUEUE_RESULT htc_try_send(HTC_TARGET *target,
  844. HTC_ENDPOINT *pEndpoint,
  845. HTC_PACKET_QUEUE *pCallersSendQueue)
  846. {
  847. HTC_PACKET_QUEUE sendQueue; /* temp queue to hold packets at various stages */
  848. HTC_PACKET *pPacket;
  849. int tx_resources;
  850. int overflow;
  851. HTC_SEND_QUEUE_RESULT result = HTC_SEND_QUEUE_OK;
  852. AR_DEBUG_PRINTF(ATH_DEBUG_SEND, ("+htc_try_send (Queue:%p Depth:%d)\n",
  853. pCallersSendQueue,
  854. (pCallersSendQueue ==
  855. NULL) ? 0 :
  856. HTC_PACKET_QUEUE_DEPTH
  857. (pCallersSendQueue)));
  858. /* init the local send queue */
  859. INIT_HTC_PACKET_QUEUE(&sendQueue);
  860. do {
  861. if (NULL == pCallersSendQueue) {
  862. /* caller didn't provide a queue, just wants us to check queues and send */
  863. break;
  864. }
  865. if (HTC_QUEUE_EMPTY(pCallersSendQueue)) {
  866. /* empty queue */
  867. OL_ATH_HTC_PKT_ERROR_COUNT_INCR(target,
  868. HTC_PKT_Q_EMPTY);
  869. result = HTC_SEND_QUEUE_DROP;
  870. break;
  871. }
  872. if (HTC_PACKET_QUEUE_DEPTH(&pEndpoint->TxQueue) >=
  873. pEndpoint->MaxTxQueueDepth) {
  874. /* we've already overflowed */
  875. overflow = HTC_PACKET_QUEUE_DEPTH(pCallersSendQueue);
  876. } else {
  877. /* figure out how much we will overflow by */
  878. overflow = HTC_PACKET_QUEUE_DEPTH(&pEndpoint->TxQueue);
  879. overflow += HTC_PACKET_QUEUE_DEPTH(pCallersSendQueue);
  880. /* figure out how much we will overflow the TX queue by */
  881. overflow -= pEndpoint->MaxTxQueueDepth;
  882. }
  883. /* if overflow is negative or zero, we are okay */
  884. if (overflow > 0) {
  885. AR_DEBUG_PRINTF(ATH_DEBUG_SEND,
  886. (" Endpoint %d, TX queue will overflow :%d , Tx Depth:%d, Max:%d \n",
  887. pEndpoint->Id, overflow,
  888. HTC_PACKET_QUEUE_DEPTH(&pEndpoint->
  889. TxQueue),
  890. pEndpoint->MaxTxQueueDepth));
  891. }
  892. if ((overflow <= 0)
  893. || (pEndpoint->EpCallBacks.EpSendFull == NULL)) {
  894. /* all packets will fit or caller did not provide send full indication handler
  895. * -- just move all of them to the local sendQueue object */
  896. HTC_PACKET_QUEUE_TRANSFER_TO_TAIL(&sendQueue,
  897. pCallersSendQueue);
  898. } else {
  899. int i;
  900. int goodPkts =
  901. HTC_PACKET_QUEUE_DEPTH(pCallersSendQueue) -
  902. overflow;
  903. A_ASSERT(goodPkts >= 0);
  904. /* we have overflowed, and a callback is provided */
  905. /* dequeue all non-overflow packets into the sendqueue */
  906. for (i = 0; i < goodPkts; i++) {
  907. /* pop off caller's queue */
  908. pPacket = htc_packet_dequeue(pCallersSendQueue);
  909. A_ASSERT(pPacket != NULL);
  910. /* insert into local queue */
  911. HTC_PACKET_ENQUEUE(&sendQueue, pPacket);
  912. }
  913. /* the caller's queue has all the packets that won't fit */
  914. /* walk through the caller's queue and indicate each one to the send full handler */
  915. ITERATE_OVER_LIST_ALLOW_REMOVE(&pCallersSendQueue->
  916. QueueHead, pPacket,
  917. HTC_PACKET, ListLink) {
  918. AR_DEBUG_PRINTF(ATH_DEBUG_SEND,
  919. (" Indicating overflowed TX packet: %p \n",
  920. pPacket));
  921. /*
  922. * Remove headroom reserved for HTC_FRAME_HDR before giving
  923. * the packet back to the user via the EpSendFull callback.
  924. */
  925. restore_tx_packet(target, pPacket);
  926. if (pEndpoint->EpCallBacks.
  927. EpSendFull(pEndpoint->EpCallBacks.pContext,
  928. pPacket) == HTC_SEND_FULL_DROP) {
  929. /* callback wants the packet dropped */
  930. INC_HTC_EP_STAT(pEndpoint, TxDropped,
  931. 1);
  932. /* leave this one in the caller's queue for cleanup */
  933. } else {
  934. /* callback wants to keep this packet, remove from caller's queue */
  935. HTC_PACKET_REMOVE(pCallersSendQueue,
  936. pPacket);
  937. /* put it in the send queue */
  938. /* add HTC_FRAME_HDR space reservation again */
  939. qdf_nbuf_push_head
  940. (GET_HTC_PACKET_NET_BUF_CONTEXT
  941. (pPacket), sizeof(HTC_FRAME_HDR));
  942. HTC_PACKET_ENQUEUE(&sendQueue, pPacket);
  943. }
  944. }
  945. ITERATE_END;
  946. if (HTC_QUEUE_EMPTY(&sendQueue)) {
  947. /* no packets made it in, caller will cleanup */
  948. OL_ATH_HTC_PKT_ERROR_COUNT_INCR(target,
  949. HTC_SEND_Q_EMPTY);
  950. result = HTC_SEND_QUEUE_DROP;
  951. break;
  952. }
  953. }
  954. } while (false);
  955. if (result != HTC_SEND_QUEUE_OK) {
  956. AR_DEBUG_PRINTF(ATH_DEBUG_SEND, ("-htc_try_send: \n"));
  957. return result;
  958. }
  959. if (!IS_TX_CREDIT_FLOW_ENABLED(pEndpoint)) {
  960. tx_resources =
  961. hif_get_free_queue_number(target->hif_dev,
  962. pEndpoint->UL_PipeID);
  963. } else {
  964. tx_resources = 0;
  965. }
  966. LOCK_HTC_TX(target);
  967. if (!HTC_QUEUE_EMPTY(&sendQueue)) {
  968. /* transfer packets to tail */
  969. HTC_PACKET_QUEUE_TRANSFER_TO_TAIL(&pEndpoint->TxQueue,
  970. &sendQueue);
  971. A_ASSERT(HTC_QUEUE_EMPTY(&sendQueue));
  972. INIT_HTC_PACKET_QUEUE(&sendQueue);
  973. }
  974. /* increment tx processing count on entry */
  975. if (qdf_atomic_inc_return(&pEndpoint->TxProcessCount) > 1) {
  976. /* another thread or task is draining the TX queues on this endpoint
  977. * that thread will reset the tx processing count when the queue is drained */
  978. qdf_atomic_dec(&pEndpoint->TxProcessCount);
  979. UNLOCK_HTC_TX(target);
  980. AR_DEBUG_PRINTF(ATH_DEBUG_SEND, ("-htc_try_send (busy) \n"));
  981. return HTC_SEND_QUEUE_OK;
  982. }
  983. /***** beyond this point only 1 thread may enter ******/
  984. /* now drain the endpoint TX queue for transmission as long as we have enough
  985. * transmit resources */
  986. while (true) {
  987. if (HTC_PACKET_QUEUE_DEPTH(&pEndpoint->TxQueue) == 0) {
  988. break;
  989. }
  990. if (IS_TX_CREDIT_FLOW_ENABLED(pEndpoint)) {
  991. #if DEBUG_CREDIT
  992. int cred = pEndpoint->TxCredits;
  993. #endif
  994. /* credit based mechanism provides flow control based on target transmit resource availability, we
  995. * assume that the HIF layer will always have bus resources greater than target transmit resources */
  996. get_htc_send_packets_credit_based(target, pEndpoint,
  997. &sendQueue);
  998. #if DEBUG_CREDIT
  999. if (ep_debug_mask & (1 << pEndpoint->Id)) {
  1000. if (cred - pEndpoint->TxCredits > 0) {
  1001. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  1002. (" <HTC> Decrease EP%d %d - %d = %d credits.\n",
  1003. pEndpoint->Id, cred,
  1004. cred -
  1005. pEndpoint->TxCredits,
  1006. pEndpoint->TxCredits));
  1007. }
  1008. }
  1009. #endif
  1010. } else {
  1011. /* get all the packets for this endpoint that we can for this pass */
  1012. get_htc_send_packets(target, pEndpoint, &sendQueue,
  1013. tx_resources);
  1014. }
  1015. if (HTC_PACKET_QUEUE_DEPTH(&sendQueue) == 0) {
  1016. /* didn't get any packets due to a lack of resources or TX queue was drained */
  1017. break;
  1018. }
  1019. UNLOCK_HTC_TX(target);
  1020. /* send what we can */
  1021. result = htc_issue_packets(target, pEndpoint, &sendQueue);
  1022. if (result) {
  1023. int i;
  1024. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  1025. ("htc_issue_packets, failed status:%d put it back to head of callersSendQueue",
  1026. result));
  1027. for (i = HTC_PACKET_QUEUE_DEPTH(&sendQueue); i > 0; i--)
  1028. hif_pm_runtime_put(target->hif_dev);
  1029. HTC_PACKET_QUEUE_TRANSFER_TO_HEAD(&pEndpoint->TxQueue,
  1030. &sendQueue);
  1031. LOCK_HTC_TX(target);
  1032. break;
  1033. }
  1034. if (!IS_TX_CREDIT_FLOW_ENABLED(pEndpoint)) {
  1035. tx_resources =
  1036. hif_get_free_queue_number(target->hif_dev,
  1037. pEndpoint->UL_PipeID);
  1038. }
  1039. LOCK_HTC_TX(target);
  1040. }
  1041. /* done with this endpoint, we can clear the count */
  1042. qdf_atomic_init(&pEndpoint->TxProcessCount);
  1043. UNLOCK_HTC_TX(target);
  1044. AR_DEBUG_PRINTF(ATH_DEBUG_SEND, ("-htc_try_send: \n"));
  1045. return HTC_SEND_QUEUE_OK;
  1046. }
  1047. #ifdef USB_HIF_SINGLE_PIPE_DATA_SCHED
  1048. static uint16_t htc_send_pkts_sched_check(HTC_HANDLE HTCHandle, HTC_ENDPOINT_ID id)
  1049. {
  1050. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  1051. HTC_ENDPOINT *pEndpoint;
  1052. HTC_ENDPOINT_ID eid;
  1053. HTC_PACKET_QUEUE *pTxQueue;
  1054. uint16_t resources;
  1055. uint16_t acQueueStatus[DATA_EP_SIZE] = { 0, 0, 0, 0 };
  1056. if (id < ENDPOINT_2 || id > ENDPOINT_5) {
  1057. return 1;
  1058. }
  1059. for (eid = ENDPOINT_2; eid <= ENDPOINT_5; eid++) {
  1060. pEndpoint = &target->endpoint[eid];
  1061. pTxQueue = &pEndpoint->TxQueue;
  1062. if (HTC_QUEUE_EMPTY(pTxQueue)) {
  1063. acQueueStatus[eid - 2] = 1;
  1064. }
  1065. }
  1066. switch (id) {
  1067. case ENDPOINT_2: /* BE */
  1068. return acQueueStatus[0] && acQueueStatus[2]
  1069. && acQueueStatus[3];
  1070. case ENDPOINT_3: /* BK */
  1071. return acQueueStatus[0] && acQueueStatus[1] && acQueueStatus[2]
  1072. && acQueueStatus[3];
  1073. case ENDPOINT_4: /* VI */
  1074. return acQueueStatus[2] && acQueueStatus[3];
  1075. case ENDPOINT_5: /* VO */
  1076. return acQueueStatus[3];
  1077. default:
  1078. return 0;
  1079. }
  1080. }
  1081. static A_STATUS htc_send_pkts_sched_queue(HTC_TARGET *target,
  1082. HTC_PACKET_QUEUE *pPktQueue,
  1083. HTC_ENDPOINT_ID eid)
  1084. {
  1085. HTC_ENDPOINT *pEndpoint;
  1086. HTC_PACKET_QUEUE *pTxQueue;
  1087. HTC_PACKET *pPacket;
  1088. int goodPkts;
  1089. pEndpoint = &target->endpoint[eid];
  1090. pTxQueue = &pEndpoint->TxQueue;
  1091. LOCK_HTC_TX(target);
  1092. goodPkts =
  1093. pEndpoint->MaxTxQueueDepth -
  1094. HTC_PACKET_QUEUE_DEPTH(&pEndpoint->TxQueue);
  1095. if (goodPkts > 0) {
  1096. while (!HTC_QUEUE_EMPTY(pPktQueue)) {
  1097. pPacket = htc_packet_dequeue(pPktQueue);
  1098. HTC_PACKET_ENQUEUE(pTxQueue, pPacket);
  1099. goodPkts--;
  1100. if (goodPkts <= 0) {
  1101. break;
  1102. }
  1103. }
  1104. }
  1105. if (HTC_PACKET_QUEUE_DEPTH(pPktQueue)) {
  1106. ITERATE_OVER_LIST_ALLOW_REMOVE(&pPktQueue->QueueHead, pPacket,
  1107. HTC_PACKET, ListLink) {
  1108. if (pEndpoint->EpCallBacks.
  1109. EpSendFull(pEndpoint->EpCallBacks.pContext,
  1110. pPacket) == HTC_SEND_FULL_DROP) {
  1111. INC_HTC_EP_STAT(pEndpoint, TxDropped, 1);
  1112. } else {
  1113. HTC_PACKET_REMOVE(pPktQueue, pPacket);
  1114. HTC_PACKET_ENQUEUE(pTxQueue, pPacket);
  1115. }
  1116. }
  1117. ITERATE_END;
  1118. }
  1119. UNLOCK_HTC_TX(target);
  1120. return A_OK;
  1121. }
  1122. #endif
  1123. A_STATUS htc_send_pkts_multiple(HTC_HANDLE HTCHandle, HTC_PACKET_QUEUE *pPktQueue)
  1124. {
  1125. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  1126. HTC_ENDPOINT *pEndpoint;
  1127. HTC_PACKET *pPacket;
  1128. qdf_nbuf_t netbuf;
  1129. HTC_FRAME_HDR *pHtcHdr;
  1130. AR_DEBUG_PRINTF(ATH_DEBUG_SEND,
  1131. ("+htc_send_pkts_multiple: Queue: %p, Pkts %d \n",
  1132. pPktQueue, HTC_PACKET_QUEUE_DEPTH(pPktQueue)));
  1133. /* get packet at head to figure out which endpoint these packets will go into */
  1134. pPacket = htc_get_pkt_at_head(pPktQueue);
  1135. if (NULL == pPacket) {
  1136. OL_ATH_HTC_PKT_ERROR_COUNT_INCR(target, GET_HTC_PKT_Q_FAIL);
  1137. AR_DEBUG_PRINTF(ATH_DEBUG_SEND, ("-htc_send_pkts_multiple \n"));
  1138. return A_EINVAL;
  1139. }
  1140. AR_DEBUG_ASSERT(pPacket->Endpoint < ENDPOINT_MAX);
  1141. pEndpoint = &target->endpoint[pPacket->Endpoint];
  1142. if (!pEndpoint->service_id) {
  1143. AR_DEBUG_PRINTF(ATH_DEBUG_SEND, ("%s service_id is invalid\n",
  1144. __func__));
  1145. return A_EINVAL;
  1146. }
  1147. #ifdef HTC_EP_STAT_PROFILING
  1148. LOCK_HTC_TX(target);
  1149. INC_HTC_EP_STAT(pEndpoint, TxPosted, HTC_PACKET_QUEUE_DEPTH(pPktQueue));
  1150. UNLOCK_HTC_TX(target);
  1151. #endif
  1152. /* provide room in each packet's netbuf for the HTC frame header */
  1153. HTC_PACKET_QUEUE_ITERATE_ALLOW_REMOVE(pPktQueue, pPacket) {
  1154. netbuf = GET_HTC_PACKET_NET_BUF_CONTEXT(pPacket);
  1155. AR_DEBUG_ASSERT(netbuf);
  1156. qdf_nbuf_push_head(netbuf, sizeof(HTC_FRAME_HDR));
  1157. /* setup HTC frame header */
  1158. pHtcHdr = (HTC_FRAME_HDR *) qdf_nbuf_get_frag_vaddr(netbuf, 0);
  1159. AR_DEBUG_ASSERT(pHtcHdr);
  1160. HTC_WRITE32(pHtcHdr,
  1161. SM(pPacket->ActualLength,
  1162. HTC_FRAME_HDR_PAYLOADLEN) | SM(pPacket->Endpoint,
  1163. HTC_FRAME_HDR_ENDPOINTID));
  1164. LOCK_HTC_TX(target);
  1165. pPacket->PktInfo.AsTx.SeqNo = pEndpoint->SeqNo;
  1166. pEndpoint->SeqNo++;
  1167. HTC_WRITE32(((uint32_t *) pHtcHdr) + 1,
  1168. SM(pPacket->PktInfo.AsTx.SeqNo,
  1169. HTC_FRAME_HDR_CONTROLBYTES1));
  1170. UNLOCK_HTC_TX(target);
  1171. /*
  1172. * Now that the HTC frame header has been added, the netbuf can be
  1173. * mapped. This only applies to non-data frames, since data frames
  1174. * were already mapped as they entered into the driver.
  1175. */
  1176. qdf_nbuf_map(target->osdev,
  1177. GET_HTC_PACKET_NET_BUF_CONTEXT(pPacket),
  1178. QDF_DMA_TO_DEVICE);
  1179. pPacket->PktInfo.AsTx.Flags |= HTC_TX_PACKET_FLAG_FIXUP_NETBUF;
  1180. }
  1181. HTC_PACKET_QUEUE_ITERATE_END;
  1182. #ifdef USB_HIF_SINGLE_PIPE_DATA_SCHED
  1183. if (!htc_send_pkts_sched_check(HTCHandle, pEndpoint->Id)) {
  1184. htc_send_pkts_sched_queue(HTCHandle, pPktQueue, pEndpoint->Id);
  1185. } else {
  1186. htc_try_send(target, pEndpoint, pPktQueue);
  1187. }
  1188. #else
  1189. htc_try_send(target, pEndpoint, pPktQueue);
  1190. #endif
  1191. /* do completion on any packets that couldn't get in */
  1192. if (!HTC_QUEUE_EMPTY(pPktQueue)) {
  1193. HTC_PACKET_QUEUE_ITERATE_ALLOW_REMOVE(pPktQueue, pPacket) {
  1194. /* remove the headroom reserved for HTC_FRAME_HDR */
  1195. restore_tx_packet(target, pPacket);
  1196. if (HTC_STOPPING(target)) {
  1197. pPacket->Status = A_ECANCELED;
  1198. } else {
  1199. pPacket->Status = A_NO_RESOURCE;
  1200. }
  1201. }
  1202. HTC_PACKET_QUEUE_ITERATE_END;
  1203. do_send_completion(pEndpoint, pPktQueue);
  1204. }
  1205. AR_DEBUG_PRINTF(ATH_DEBUG_SEND, ("-htc_send_pkts_multiple \n"));
  1206. return A_OK;
  1207. }
  1208. /* HTC API - htc_send_pkt */
  1209. A_STATUS htc_send_pkt(HTC_HANDLE HTCHandle, HTC_PACKET *pPacket)
  1210. {
  1211. HTC_PACKET_QUEUE queue;
  1212. if (HTCHandle == NULL || pPacket == NULL) {
  1213. return A_ERROR;
  1214. }
  1215. AR_DEBUG_PRINTF(ATH_DEBUG_SEND,
  1216. ("+-htc_send_pkt: Enter endPointId: %d, buffer: %p, length: %d \n",
  1217. pPacket->Endpoint, pPacket->pBuffer,
  1218. pPacket->ActualLength));
  1219. INIT_HTC_PACKET_QUEUE_AND_ADD(&queue, pPacket);
  1220. return htc_send_pkts_multiple(HTCHandle, &queue);
  1221. }
  1222. #ifdef ATH_11AC_TXCOMPACT
  1223. A_STATUS htc_send_data_pkt(HTC_HANDLE HTCHandle, qdf_nbuf_t netbuf, int Epid,
  1224. int ActualLength)
  1225. {
  1226. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  1227. HTC_ENDPOINT *pEndpoint;
  1228. HTC_FRAME_HDR *pHtcHdr;
  1229. A_STATUS status = A_OK;
  1230. int tx_resources;
  1231. uint32_t data_attr = 0;
  1232. pEndpoint = &target->endpoint[Epid];
  1233. tx_resources =
  1234. hif_get_free_queue_number(target->hif_dev, pEndpoint->UL_PipeID);
  1235. if (tx_resources < HTC_DATA_RESOURCE_THRS) {
  1236. if (pEndpoint->ul_is_polled) {
  1237. hif_send_complete_check(pEndpoint->target->hif_dev,
  1238. pEndpoint->UL_PipeID, 1);
  1239. tx_resources =
  1240. hif_get_free_queue_number(target->hif_dev,
  1241. pEndpoint->UL_PipeID);
  1242. }
  1243. if (tx_resources < HTC_DATA_MINDESC_PERPACKET) {
  1244. return A_ERROR;
  1245. }
  1246. }
  1247. if (hif_pm_runtime_get(target->hif_dev))
  1248. return A_ERROR;
  1249. pHtcHdr = (HTC_FRAME_HDR *) qdf_nbuf_get_frag_vaddr(netbuf, 0);
  1250. AR_DEBUG_ASSERT(pHtcHdr);
  1251. data_attr = qdf_nbuf_data_attr_get(netbuf);
  1252. HTC_WRITE32(pHtcHdr, SM(ActualLength, HTC_FRAME_HDR_PAYLOADLEN) |
  1253. SM(Epid, HTC_FRAME_HDR_ENDPOINTID));
  1254. /*
  1255. * If the HIF pipe for the data endpoint is polled rather than
  1256. * interrupt-driven, this is a good point to check whether any
  1257. * data previously sent through the HIF pipe have finished being
  1258. * sent.
  1259. * Since this may result in callbacks to htc_tx_completion_handler,
  1260. * which can take the HTC tx lock, make the hif_send_complete_check
  1261. * call before acquiring the HTC tx lock.
  1262. * Call hif_send_complete_check directly, rather than calling
  1263. * htc_send_complete_check, and call the PollTimerStart separately
  1264. * after calling hif_send_head, so the timer will be started to
  1265. * check for completion of the new outstanding download (in the
  1266. * unexpected event that other polling calls don't catch it).
  1267. */
  1268. LOCK_HTC_TX(target);
  1269. HTC_WRITE32(((uint32_t *) pHtcHdr) + 1,
  1270. SM(pEndpoint->SeqNo, HTC_FRAME_HDR_CONTROLBYTES1));
  1271. pEndpoint->SeqNo++;
  1272. QDF_NBUF_UPDATE_TX_PKT_COUNT(netbuf, QDF_NBUF_TX_PKT_HTC);
  1273. DPTRACE(qdf_dp_trace(netbuf, QDF_DP_TRACE_HTC_PACKET_PTR_RECORD,
  1274. qdf_nbuf_data_addr(netbuf),
  1275. sizeof(qdf_nbuf_data(netbuf)), QDF_TX));
  1276. status = hif_send_head(target->hif_dev,
  1277. pEndpoint->UL_PipeID,
  1278. pEndpoint->Id, ActualLength, netbuf, data_attr);
  1279. UNLOCK_HTC_TX(target);
  1280. return status;
  1281. }
  1282. #else /*ATH_11AC_TXCOMPACT */
  1283. A_STATUS htc_send_data_pkt(HTC_HANDLE HTCHandle, HTC_PACKET *pPacket,
  1284. uint8_t more_data)
  1285. {
  1286. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  1287. HTC_ENDPOINT *pEndpoint;
  1288. HTC_FRAME_HDR *pHtcHdr;
  1289. HTC_PACKET_QUEUE sendQueue;
  1290. qdf_nbuf_t netbuf = NULL;
  1291. int tx_resources;
  1292. A_STATUS status = A_OK;
  1293. uint32_t data_attr = 0;
  1294. if (pPacket) {
  1295. AR_DEBUG_ASSERT(pPacket->Endpoint < ENDPOINT_MAX);
  1296. pEndpoint = &target->endpoint[pPacket->Endpoint];
  1297. /* add HTC_FRAME_HDR in the initial fragment */
  1298. netbuf = GET_HTC_PACKET_NET_BUF_CONTEXT(pPacket);
  1299. pHtcHdr = (HTC_FRAME_HDR *) qdf_nbuf_get_frag_vaddr(netbuf, 0);
  1300. AR_DEBUG_ASSERT(pHtcHdr);
  1301. HTC_WRITE32(pHtcHdr,
  1302. SM(pPacket->ActualLength,
  1303. HTC_FRAME_HDR_PAYLOADLEN) | SM(pPacket->PktInfo.
  1304. AsTx.SendFlags,
  1305. HTC_FRAME_HDR_FLAGS)
  1306. | SM(pPacket->Endpoint, HTC_FRAME_HDR_ENDPOINTID));
  1307. /*
  1308. * If the HIF pipe for the data endpoint is polled rather than
  1309. * interrupt-driven, this is a good point to check whether any
  1310. * data previously sent through the HIF pipe have finished being
  1311. * sent.
  1312. * Since this may result in callbacks to htc_tx_completion_handler,
  1313. * which can take the HTC tx lock, make the hif_send_complete_check
  1314. * call before acquiring the HTC tx lock.
  1315. * Call hif_send_complete_check directly, rather than calling
  1316. * htc_send_complete_check, and call the PollTimerStart separately
  1317. * after calling hif_send_head, so the timer will be started to
  1318. * check for completion of the new outstanding download (in the
  1319. * unexpected event that other polling calls don't catch it).
  1320. */
  1321. if (pEndpoint->ul_is_polled) {
  1322. htc_send_complete_poll_timer_stop(pEndpoint);
  1323. hif_send_complete_check(pEndpoint->target->hif_dev,
  1324. pEndpoint->UL_PipeID, 0);
  1325. }
  1326. LOCK_HTC_TX(target);
  1327. pPacket->PktInfo.AsTx.SeqNo = pEndpoint->SeqNo;
  1328. pEndpoint->SeqNo++;
  1329. HTC_WRITE32(((uint32_t *) pHtcHdr) + 1,
  1330. SM(pPacket->PktInfo.AsTx.SeqNo,
  1331. HTC_FRAME_HDR_CONTROLBYTES1));
  1332. /* append new packet to pEndpoint->TxQueue */
  1333. HTC_PACKET_ENQUEUE(&pEndpoint->TxQueue, pPacket);
  1334. #ifdef ENABLE_BUNDLE_TX
  1335. if (HTC_ENABLE_BUNDLE(target) && (more_data)) {
  1336. UNLOCK_HTC_TX(target);
  1337. return A_OK;
  1338. }
  1339. #endif
  1340. } else {
  1341. LOCK_HTC_TX(target);
  1342. pEndpoint = &target->endpoint[1];
  1343. }
  1344. /* increment tx processing count on entry */
  1345. qdf_atomic_inc(&pEndpoint->TxProcessCount);
  1346. if (qdf_atomic_read(&pEndpoint->TxProcessCount) > 1) {
  1347. /*
  1348. * Another thread or task is draining the TX queues on this endpoint.
  1349. * That thread will reset the tx processing count when the queue is
  1350. * drained.
  1351. */
  1352. qdf_atomic_dec(&pEndpoint->TxProcessCount);
  1353. UNLOCK_HTC_TX(target);
  1354. return A_OK;
  1355. }
  1356. /***** beyond this point only 1 thread may enter ******/
  1357. INIT_HTC_PACKET_QUEUE(&sendQueue);
  1358. if (IS_TX_CREDIT_FLOW_ENABLED(pEndpoint)) {
  1359. #if DEBUG_CREDIT
  1360. int cred = pEndpoint->TxCredits;
  1361. #endif
  1362. get_htc_send_packets_credit_based(target, pEndpoint, &sendQueue);
  1363. #if DEBUG_CREDIT
  1364. if (ep_debug_mask & (1 << pEndpoint->Id)) {
  1365. if (cred - pEndpoint->TxCredits > 0) {
  1366. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  1367. (" <HTC> Decrease EP%d %d - %d = %d credits.\n",
  1368. pEndpoint->Id, cred,
  1369. cred - pEndpoint->TxCredits,
  1370. pEndpoint->TxCredits));
  1371. }
  1372. }
  1373. #endif
  1374. UNLOCK_HTC_TX(target);
  1375. }
  1376. #ifdef ENABLE_BUNDLE_TX
  1377. else if (HTC_ENABLE_BUNDLE(target)) {
  1378. /* Dequeue max packets from endpoint tx queue */
  1379. get_htc_send_packets(target, pEndpoint, &sendQueue,
  1380. HTC_MAX_TX_BUNDLE_SEND_LIMIT);
  1381. UNLOCK_HTC_TX(target);
  1382. }
  1383. #endif
  1384. else {
  1385. /*
  1386. * Now drain the endpoint TX queue for transmission as long as we have
  1387. * enough transmit resources
  1388. */
  1389. tx_resources =
  1390. hif_get_free_queue_number(target->hif_dev,
  1391. pEndpoint->UL_PipeID);
  1392. get_htc_send_packets(target, pEndpoint, &sendQueue, tx_resources);
  1393. UNLOCK_HTC_TX(target);
  1394. }
  1395. QDF_NBUF_UPDATE_TX_PKT_COUNT(netbuf, QDF_NBUF_TX_PKT_HTC);
  1396. DPTRACE(qdf_dp_trace(netbuf, QDF_DP_TRACE_HTC_PACKET_PTR_RECORD,
  1397. qdf_nbuf_data_addr(netbuf),
  1398. sizeof(qdf_nbuf_data(netbuf)), QDF_TX));
  1399. /* send what we can */
  1400. while (true) {
  1401. #if defined(HIF_USB) || defined(HIF_SDIO)
  1402. #ifdef ENABLE_BUNDLE_TX
  1403. if (HTC_ENABLE_BUNDLE(target) &&
  1404. HTC_PACKET_QUEUE_DEPTH(&sendQueue) >=
  1405. HTC_MIN_MSG_PER_BUNDLE) {
  1406. htc_issue_packets_bundle(target, pEndpoint, &sendQueue);
  1407. }
  1408. #endif
  1409. #endif
  1410. pPacket = htc_packet_dequeue(&sendQueue);
  1411. if (pPacket == NULL) {
  1412. break;
  1413. }
  1414. netbuf = GET_HTC_PACKET_NET_BUF_CONTEXT(pPacket);
  1415. LOCK_HTC_TX(target);
  1416. /* store in look up queue to match completions */
  1417. HTC_PACKET_ENQUEUE(&pEndpoint->TxLookupQueue, pPacket);
  1418. INC_HTC_EP_STAT(pEndpoint, TxIssued, 1);
  1419. pEndpoint->ul_outstanding_cnt++;
  1420. UNLOCK_HTC_TX(target);
  1421. status = hif_send_head(target->hif_dev,
  1422. pEndpoint->UL_PipeID,
  1423. pEndpoint->Id,
  1424. HTC_HDR_LENGTH + pPacket->ActualLength,
  1425. netbuf, data_attr);
  1426. #if DEBUG_BUNDLE
  1427. qdf_print(" Send single EP%d buffer size:0x%x, total:0x%x.\n",
  1428. pEndpoint->Id,
  1429. pEndpoint->TxCreditSize,
  1430. HTC_HDR_LENGTH + pPacket->ActualLength);
  1431. #endif
  1432. htc_issue_tx_bundle_stats_inc(target);
  1433. if (qdf_unlikely(A_FAILED(status))) {
  1434. LOCK_HTC_TX(target);
  1435. pEndpoint->ul_outstanding_cnt--;
  1436. /* remove this packet from the tx completion queue */
  1437. HTC_PACKET_REMOVE(&pEndpoint->TxLookupQueue, pPacket);
  1438. /*
  1439. * Don't bother reclaiming credits - HTC flow control
  1440. * is not applicable to tx data.
  1441. * In LL systems, there is no download flow control,
  1442. * since there's virtually no download delay.
  1443. * In HL systems, the txrx SW explicitly performs the
  1444. * tx flow control.
  1445. */
  1446. /* pEndpoint->TxCredits += pPacket->PktInfo.AsTx.CreditsUsed; */
  1447. /* put this frame back at the front of the sendQueue */
  1448. HTC_PACKET_ENQUEUE_TO_HEAD(&sendQueue, pPacket);
  1449. /* put the sendQueue back at the front of pEndpoint->TxQueue */
  1450. HTC_PACKET_QUEUE_TRANSFER_TO_HEAD(&pEndpoint->TxQueue,
  1451. &sendQueue);
  1452. UNLOCK_HTC_TX(target);
  1453. break; /* still need to reset TxProcessCount */
  1454. }
  1455. }
  1456. /* done with this endpoint, we can clear the count */
  1457. qdf_atomic_init(&pEndpoint->TxProcessCount);
  1458. if (pEndpoint->ul_is_polled) {
  1459. /*
  1460. * Start a cleanup timer to poll for download completion.
  1461. * The download completion should be noticed promptly from
  1462. * other polling calls, but the timer provides a safety net
  1463. * in case other polling calls don't occur as expected.
  1464. */
  1465. htc_send_complete_poll_timer_start(pEndpoint);
  1466. }
  1467. return status;
  1468. }
  1469. #endif /*ATH_11AC_TXCOMPACT */
  1470. /*
  1471. * In the adapted HIF layer, qdf_nbuf_t are passed between HIF and HTC,
  1472. * since upper layers expects HTC_PACKET containers we use the completed netbuf
  1473. * and lookup its corresponding HTC packet buffer from a lookup list.
  1474. * This is extra overhead that can be fixed by re-aligning HIF interfaces
  1475. * with HTC.
  1476. *
  1477. */
  1478. static HTC_PACKET *htc_lookup_tx_packet(HTC_TARGET *target,
  1479. HTC_ENDPOINT *pEndpoint,
  1480. qdf_nbuf_t netbuf)
  1481. {
  1482. HTC_PACKET *pPacket = NULL;
  1483. HTC_PACKET *pFoundPacket = NULL;
  1484. HTC_PACKET_QUEUE lookupQueue;
  1485. INIT_HTC_PACKET_QUEUE(&lookupQueue);
  1486. LOCK_HTC_TX(target);
  1487. /* mark that HIF has indicated the send complete for another packet */
  1488. pEndpoint->ul_outstanding_cnt--;
  1489. /* Dequeue first packet directly because of in-order completion */
  1490. pPacket = htc_packet_dequeue(&pEndpoint->TxLookupQueue);
  1491. if (qdf_unlikely(!pPacket)) {
  1492. UNLOCK_HTC_TX(target);
  1493. return NULL;
  1494. }
  1495. if (netbuf == (qdf_nbuf_t) GET_HTC_PACKET_NET_BUF_CONTEXT(pPacket)) {
  1496. UNLOCK_HTC_TX(target);
  1497. return pPacket;
  1498. } else {
  1499. HTC_PACKET_ENQUEUE(&lookupQueue, pPacket);
  1500. }
  1501. /*
  1502. * Move TX lookup queue to temp queue because most of packets that are not index 0
  1503. * are not top 10 packets.
  1504. */
  1505. HTC_PACKET_QUEUE_TRANSFER_TO_TAIL(&lookupQueue,
  1506. &pEndpoint->TxLookupQueue);
  1507. UNLOCK_HTC_TX(target);
  1508. ITERATE_OVER_LIST_ALLOW_REMOVE(&lookupQueue.QueueHead, pPacket,
  1509. HTC_PACKET, ListLink) {
  1510. if (NULL == pPacket) {
  1511. pFoundPacket = pPacket;
  1512. break;
  1513. }
  1514. /* check for removal */
  1515. if (netbuf ==
  1516. (qdf_nbuf_t) GET_HTC_PACKET_NET_BUF_CONTEXT(pPacket)) {
  1517. /* found it */
  1518. HTC_PACKET_REMOVE(&lookupQueue, pPacket);
  1519. pFoundPacket = pPacket;
  1520. break;
  1521. }
  1522. }
  1523. ITERATE_END;
  1524. LOCK_HTC_TX(target);
  1525. HTC_PACKET_QUEUE_TRANSFER_TO_HEAD(&pEndpoint->TxLookupQueue,
  1526. &lookupQueue);
  1527. UNLOCK_HTC_TX(target);
  1528. return pFoundPacket;
  1529. }
  1530. QDF_STATUS htc_tx_completion_handler(void *Context,
  1531. qdf_nbuf_t netbuf, unsigned int EpID,
  1532. uint32_t toeplitz_hash_result)
  1533. {
  1534. HTC_TARGET *target = (HTC_TARGET *) Context;
  1535. HTC_ENDPOINT *pEndpoint;
  1536. HTC_PACKET *pPacket;
  1537. #ifdef USB_HIF_SINGLE_PIPE_DATA_SCHED
  1538. HTC_ENDPOINT_ID eid[DATA_EP_SIZE] = { ENDPOINT_5, ENDPOINT_4,
  1539. ENDPOINT_2, ENDPOINT_3 };
  1540. int epidIdx;
  1541. uint16_t resourcesThresh[DATA_EP_SIZE]; /* urb resources */
  1542. uint16_t resources;
  1543. uint16_t resourcesMax;
  1544. #endif
  1545. pEndpoint = &target->endpoint[EpID];
  1546. target->TX_comp_cnt++;
  1547. do {
  1548. pPacket = htc_lookup_tx_packet(target, pEndpoint, netbuf);
  1549. if (NULL == pPacket) {
  1550. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  1551. ("HTC TX lookup failed!\n"));
  1552. /* may have already been flushed and freed */
  1553. netbuf = NULL;
  1554. break;
  1555. }
  1556. if (pPacket->PktInfo.AsTx.Tag != HTC_TX_PACKET_TAG_AUTO_PM)
  1557. hif_pm_runtime_put(target->hif_dev);
  1558. if (pPacket->PktInfo.AsTx.Tag == HTC_TX_PACKET_TAG_BUNDLED) {
  1559. HTC_PACKET *pPacketTemp;
  1560. HTC_PACKET_QUEUE *pQueueSave =
  1561. (HTC_PACKET_QUEUE *) pPacket->pContext;
  1562. HTC_PACKET_QUEUE_ITERATE_ALLOW_REMOVE(pQueueSave,
  1563. pPacketTemp) {
  1564. pPacket->Status = A_OK;
  1565. send_packet_completion(target, pPacketTemp);
  1566. }
  1567. HTC_PACKET_QUEUE_ITERATE_END;
  1568. free_htc_bundle_packet(target, pPacket);
  1569. return QDF_STATUS_SUCCESS;
  1570. }
  1571. /* will be giving this buffer back to upper layers */
  1572. netbuf = NULL;
  1573. pPacket->Status = QDF_STATUS_SUCCESS;
  1574. send_packet_completion(target, pPacket);
  1575. } while (false);
  1576. if (!IS_TX_CREDIT_FLOW_ENABLED(pEndpoint)) {
  1577. /* note: when using TX credit flow, the re-checking of queues happens
  1578. * when credits flow back from the target.
  1579. * in the non-TX credit case, we recheck after the packet completes */
  1580. htc_try_send(target, pEndpoint, NULL);
  1581. }
  1582. return QDF_STATUS_SUCCESS;
  1583. }
  1584. #ifdef WLAN_FEATURE_FASTPATH
  1585. /**
  1586. * htc_ctrl_msg_cmpl(): checks for tx completion for the endpoint specified
  1587. * @HTC_HANDLE : pointer to the htc target context
  1588. * @htc_ep_id : end point id
  1589. *
  1590. * checks HTC tx completion
  1591. *
  1592. * Return: none
  1593. */
  1594. void htc_ctrl_msg_cmpl(HTC_HANDLE htc_pdev, HTC_ENDPOINT_ID htc_ep_id)
  1595. {
  1596. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(htc_pdev);
  1597. HTC_ENDPOINT *pendpoint = &target->endpoint[htc_ep_id];
  1598. htc_send_complete_check(pendpoint, 1);
  1599. }
  1600. #endif
  1601. /* callback when TX resources become available */
  1602. void htc_tx_resource_avail_handler(void *context, uint8_t pipeID)
  1603. {
  1604. int i;
  1605. HTC_TARGET *target = (HTC_TARGET *) context;
  1606. HTC_ENDPOINT *pEndpoint = NULL;
  1607. for (i = 0; i < ENDPOINT_MAX; i++) {
  1608. pEndpoint = &target->endpoint[i];
  1609. if (pEndpoint->service_id != 0) {
  1610. if (pEndpoint->UL_PipeID == pipeID) {
  1611. break;
  1612. }
  1613. }
  1614. }
  1615. if (i >= ENDPOINT_MAX) {
  1616. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  1617. ("Invalid pipe indicated for TX resource avail : %d!\n",
  1618. pipeID));
  1619. return;
  1620. }
  1621. AR_DEBUG_PRINTF(ATH_DEBUG_SEND,
  1622. ("HIF indicated more resources for pipe:%d \n",
  1623. pipeID));
  1624. htc_try_send(target, pEndpoint, NULL);
  1625. }
  1626. #ifdef FEATURE_RUNTIME_PM
  1627. /**
  1628. * htc_kick_queues(): resumes tx transactions of suspended endpoints
  1629. * @context: pointer to the htc target context
  1630. *
  1631. * Iterates throught the enpoints and provides a context to empty queues
  1632. * int the hif layer when they are stalled due to runtime suspend.
  1633. *
  1634. * Return: none
  1635. */
  1636. void htc_kick_queues(void *context)
  1637. {
  1638. int i;
  1639. HTC_TARGET *target = (HTC_TARGET *)context;
  1640. HTC_ENDPOINT *endpoint = NULL;
  1641. for (i = 0; i < ENDPOINT_MAX; i++) {
  1642. endpoint = &target->endpoint[i];
  1643. if (endpoint->service_id == 0)
  1644. continue;
  1645. if (endpoint->EpCallBacks.ep_resume_tx_queue)
  1646. endpoint->EpCallBacks.ep_resume_tx_queue(
  1647. endpoint->EpCallBacks.pContext);
  1648. htc_try_send(target, endpoint, NULL);
  1649. }
  1650. }
  1651. #endif
  1652. /* flush endpoint TX queue */
  1653. void htc_flush_endpoint_tx(HTC_TARGET *target, HTC_ENDPOINT *pEndpoint,
  1654. HTC_TX_TAG Tag)
  1655. {
  1656. HTC_PACKET *pPacket;
  1657. LOCK_HTC_TX(target);
  1658. while (HTC_PACKET_QUEUE_DEPTH(&pEndpoint->TxQueue)) {
  1659. pPacket = htc_packet_dequeue(&pEndpoint->TxQueue);
  1660. if (pPacket) {
  1661. /* let the sender know the packet was not delivered */
  1662. pPacket->Status = A_ECANCELED;
  1663. send_packet_completion(target, pPacket);
  1664. }
  1665. }
  1666. UNLOCK_HTC_TX(target);
  1667. }
  1668. /* HTC API to flush an endpoint's TX queue*/
  1669. void htc_flush_endpoint(HTC_HANDLE HTCHandle, HTC_ENDPOINT_ID Endpoint,
  1670. HTC_TX_TAG Tag)
  1671. {
  1672. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  1673. HTC_ENDPOINT *pEndpoint = &target->endpoint[Endpoint];
  1674. if (pEndpoint->service_id == 0) {
  1675. AR_DEBUG_ASSERT(false);
  1676. /* not in use.. */
  1677. return;
  1678. }
  1679. htc_flush_endpoint_tx(target, pEndpoint, Tag);
  1680. }
  1681. /* HTC API to indicate activity to the credit distribution function */
  1682. void htc_indicate_activity_change(HTC_HANDLE HTCHandle,
  1683. HTC_ENDPOINT_ID Endpoint, bool Active)
  1684. {
  1685. /* TODO */
  1686. }
  1687. bool htc_is_endpoint_active(HTC_HANDLE HTCHandle, HTC_ENDPOINT_ID Endpoint)
  1688. {
  1689. return true;
  1690. }
  1691. /* process credit reports and call distribution function */
  1692. void htc_process_credit_rpt(HTC_TARGET *target, HTC_CREDIT_REPORT *pRpt,
  1693. int NumEntries, HTC_ENDPOINT_ID FromEndpoint)
  1694. {
  1695. int i;
  1696. HTC_ENDPOINT *pEndpoint;
  1697. int totalCredits = 0;
  1698. uint8_t rpt_credits, rpt_ep_id;
  1699. AR_DEBUG_PRINTF(ATH_DEBUG_SEND,
  1700. ("+htc_process_credit_rpt, Credit Report Entries:%d \n",
  1701. NumEntries));
  1702. /* lock out TX while we update credits */
  1703. LOCK_HTC_TX(target);
  1704. for (i = 0; i < NumEntries; i++, pRpt++) {
  1705. rpt_ep_id = HTC_GET_FIELD(pRpt, HTC_CREDIT_REPORT, ENDPOINTID);
  1706. if (rpt_ep_id >= ENDPOINT_MAX) {
  1707. AR_DEBUG_ASSERT(false);
  1708. break;
  1709. }
  1710. rpt_credits = HTC_GET_FIELD(pRpt, HTC_CREDIT_REPORT, CREDITS);
  1711. pEndpoint = &target->endpoint[rpt_ep_id];
  1712. #if DEBUG_CREDIT
  1713. if (ep_debug_mask & (1 << pEndpoint->Id)) {
  1714. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  1715. (" <HTC> Increase EP%d %d + %d = %d credits\n",
  1716. rpt_ep_id, pEndpoint->TxCredits,
  1717. rpt_credits,
  1718. pEndpoint->TxCredits + rpt_credits));
  1719. }
  1720. #endif
  1721. #ifdef HTC_EP_STAT_PROFILING
  1722. INC_HTC_EP_STAT(pEndpoint, TxCreditRpts, 1);
  1723. INC_HTC_EP_STAT(pEndpoint, TxCreditsReturned, rpt_credits);
  1724. if (FromEndpoint == rpt_ep_id) {
  1725. /* this credit report arrived on the same endpoint indicating it arrived in an RX
  1726. * packet */
  1727. INC_HTC_EP_STAT(pEndpoint, TxCreditsFromRx,
  1728. rpt_credits);
  1729. INC_HTC_EP_STAT(pEndpoint, TxCreditRptsFromRx, 1);
  1730. } else if (FromEndpoint == ENDPOINT_0) {
  1731. /* this credit arrived on endpoint 0 as a NULL message */
  1732. INC_HTC_EP_STAT(pEndpoint, TxCreditsFromEp0,
  1733. rpt_credits);
  1734. INC_HTC_EP_STAT(pEndpoint, TxCreditRptsFromEp0, 1);
  1735. } else {
  1736. /* arrived on another endpoint */
  1737. INC_HTC_EP_STAT(pEndpoint, TxCreditsFromOther,
  1738. rpt_credits);
  1739. INC_HTC_EP_STAT(pEndpoint, TxCreditRptsFromOther, 1);
  1740. }
  1741. #endif
  1742. #if defined(HIF_USB)
  1743. if (pEndpoint->Id >= ENDPOINT_2 && pEndpoint->Id <= ENDPOINT_5) {
  1744. HTC_ENDPOINT_ID eid[DATA_EP_SIZE] = { ENDPOINT_5,
  1745. ENDPOINT_4, ENDPOINT_2, ENDPOINT_3 };
  1746. int epid_idx;
  1747. target->avail_tx_credits += rpt_credits;
  1748. for (epid_idx = 0; epid_idx < DATA_EP_SIZE; epid_idx++) {
  1749. pEndpoint = &target->endpoint[eid[epid_idx]];
  1750. if (HTC_PACKET_QUEUE_DEPTH(&pEndpoint->TxQueue)) {
  1751. break;
  1752. }
  1753. }
  1754. UNLOCK_HTC_TX(target);
  1755. htc_try_send(target, pEndpoint, NULL);
  1756. LOCK_HTC_TX(target);
  1757. } else {
  1758. pEndpoint->TxCredits += rpt_credits;
  1759. if (pEndpoint->TxCredits
  1760. && HTC_PACKET_QUEUE_DEPTH(&pEndpoint->TxQueue)) {
  1761. UNLOCK_HTC_TX(target);
  1762. htc_try_send(target, pEndpoint, NULL);
  1763. LOCK_HTC_TX(target);
  1764. }
  1765. }
  1766. #else
  1767. pEndpoint->TxCredits += rpt_credits;
  1768. if (pEndpoint->service_id == WMI_CONTROL_SVC) {
  1769. LOCK_HTC_CREDIT(target);
  1770. htc_credit_record(HTC_PROCESS_CREDIT_REPORT,
  1771. pEndpoint->TxCredits,
  1772. HTC_PACKET_QUEUE_DEPTH(&pEndpoint->
  1773. TxQueue));
  1774. UNLOCK_HTC_CREDIT(target);
  1775. }
  1776. if (pEndpoint->TxCredits
  1777. && HTC_PACKET_QUEUE_DEPTH(&pEndpoint->TxQueue)) {
  1778. UNLOCK_HTC_TX(target);
  1779. #ifdef ATH_11AC_TXCOMPACT
  1780. htc_try_send(target, pEndpoint, NULL);
  1781. #else
  1782. if (pEndpoint->service_id == HTT_DATA_MSG_SVC) {
  1783. htc_send_data_pkt(target, NULL, 0);
  1784. } else {
  1785. htc_try_send(target, pEndpoint, NULL);
  1786. }
  1787. #endif
  1788. LOCK_HTC_TX(target);
  1789. }
  1790. #endif
  1791. totalCredits += rpt_credits;
  1792. }
  1793. AR_DEBUG_PRINTF(ATH_DEBUG_SEND,
  1794. (" Report indicated %d credits to distribute \n",
  1795. totalCredits));
  1796. UNLOCK_HTC_TX(target);
  1797. AR_DEBUG_PRINTF(ATH_DEBUG_SEND, ("-htc_process_credit_rpt \n"));
  1798. }
  1799. /* function to fetch stats from htc layer*/
  1800. struct ol_ath_htc_stats *ieee80211_ioctl_get_htc_stats(HTC_HANDLE HTCHandle)
  1801. {
  1802. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  1803. return &(target->htc_pkt_stats);
  1804. }