htc_send.c 62 KB

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