htc_recv.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749
  1. /*
  2. * Copyright (c) 2013-2015 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 "cds_api.h"
  29. #include <cdf_nbuf.h> /* cdf_nbuf_t */
  30. #include "epping_main.h"
  31. /* HTC Control message receive timeout msec */
  32. #define HTC_CONTROL_RX_TIMEOUT 3000
  33. #ifdef DEBUG
  34. void debug_dump_bytes(A_UCHAR *buffer, A_UINT16 length, char *pDescription)
  35. {
  36. A_CHAR stream[60];
  37. A_CHAR byteOffsetStr[10];
  38. A_UINT32 i;
  39. A_UINT16 offset, count, byteOffset;
  40. A_PRINTF("<---------Dumping %d Bytes : %s ------>\n", length,
  41. pDescription);
  42. count = 0;
  43. offset = 0;
  44. byteOffset = 0;
  45. for (i = 0; i < length; i++) {
  46. A_SNPRINTF(stream + offset, (sizeof(stream) - offset),
  47. "%02X ", buffer[i]);
  48. count++;
  49. offset += 3;
  50. if (count == 16) {
  51. count = 0;
  52. offset = 0;
  53. A_SNPRINTF(byteOffsetStr, sizeof(byteOffset), "%4.4X",
  54. byteOffset);
  55. A_PRINTF("[%s]: %s\n", byteOffsetStr, stream);
  56. A_MEMZERO(stream, 60);
  57. byteOffset += 16;
  58. }
  59. }
  60. if (offset != 0) {
  61. A_SNPRINTF(byteOffsetStr, sizeof(byteOffset), "%4.4X",
  62. byteOffset);
  63. A_PRINTF("[%s]: %s\n", byteOffsetStr, stream);
  64. }
  65. A_PRINTF("<------------------------------------------------->\n");
  66. }
  67. #else
  68. void debug_dump_bytes(A_UCHAR *buffer, A_UINT16 length, char *pDescription)
  69. {
  70. }
  71. #endif
  72. static A_STATUS htc_process_trailer(HTC_TARGET *target,
  73. A_UINT8 *pBuffer,
  74. int Length, HTC_ENDPOINT_ID FromEndpoint);
  75. static void do_recv_completion(HTC_ENDPOINT *pEndpoint,
  76. HTC_PACKET_QUEUE *pQueueToIndicate)
  77. {
  78. do {
  79. if (HTC_QUEUE_EMPTY(pQueueToIndicate)) {
  80. /* nothing to indicate */
  81. break;
  82. }
  83. if (pEndpoint->EpCallBacks.EpRecvPktMultiple != NULL) {
  84. AR_DEBUG_PRINTF(ATH_DEBUG_RECV,
  85. (" HTC calling ep %d, recv multiple callback (%d pkts) \n",
  86. pEndpoint->Id,
  87. HTC_PACKET_QUEUE_DEPTH
  88. (pQueueToIndicate)));
  89. /* a recv multiple handler is being used, pass the queue to the handler */
  90. pEndpoint->EpCallBacks.EpRecvPktMultiple(pEndpoint->
  91. EpCallBacks.
  92. pContext,
  93. pQueueToIndicate);
  94. INIT_HTC_PACKET_QUEUE(pQueueToIndicate);
  95. } else {
  96. HTC_PACKET *pPacket;
  97. /* using legacy EpRecv */
  98. while (!HTC_QUEUE_EMPTY(pQueueToIndicate)) {
  99. pPacket = htc_packet_dequeue(pQueueToIndicate);
  100. if (pEndpoint->EpCallBacks.EpRecv == NULL) {
  101. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  102. ("HTC ep %d has NULL recv callback on packet %p\n",
  103. pEndpoint->Id,
  104. pPacket));
  105. continue;
  106. }
  107. AR_DEBUG_PRINTF(ATH_DEBUG_RECV,
  108. ("HTC calling ep %d recv callback on packet %p\n",
  109. pEndpoint->Id, pPacket));
  110. pEndpoint->EpCallBacks.EpRecv(pEndpoint->
  111. EpCallBacks.
  112. pContext,
  113. pPacket);
  114. }
  115. }
  116. } while (false);
  117. }
  118. static void recv_packet_completion(HTC_TARGET *target, HTC_ENDPOINT *pEndpoint,
  119. HTC_PACKET *pPacket)
  120. {
  121. HTC_PACKET_QUEUE container;
  122. INIT_HTC_PACKET_QUEUE_AND_ADD(&container, pPacket);
  123. /* do completion */
  124. do_recv_completion(pEndpoint, &container);
  125. }
  126. void htc_control_rx_complete(void *Context, HTC_PACKET *pPacket)
  127. {
  128. /* TODO, can't really receive HTC control messages yet.... */
  129. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  130. ("Invalid call to htc_control_rx_complete\n"));
  131. }
  132. void htc_unblock_recv(HTC_HANDLE HTCHandle)
  133. {
  134. /* TODO find the Need in new model */
  135. }
  136. void htc_enable_recv(HTC_HANDLE HTCHandle)
  137. {
  138. /* TODO find the Need in new model */
  139. }
  140. void htc_disable_recv(HTC_HANDLE HTCHandle)
  141. {
  142. /* TODO find the Need in new model */
  143. }
  144. int htc_get_num_recv_buffers(HTC_HANDLE HTCHandle, HTC_ENDPOINT_ID Endpoint)
  145. {
  146. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  147. HTC_ENDPOINT *pEndpoint = &target->endpoint[Endpoint];
  148. return HTC_PACKET_QUEUE_DEPTH(&pEndpoint->RxBufferHoldQueue);
  149. }
  150. HTC_PACKET *allocate_htc_packet_container(HTC_TARGET *target)
  151. {
  152. HTC_PACKET *pPacket;
  153. LOCK_HTC_RX(target);
  154. if (NULL == target->pHTCPacketStructPool) {
  155. UNLOCK_HTC_RX(target);
  156. return NULL;
  157. }
  158. pPacket = target->pHTCPacketStructPool;
  159. target->pHTCPacketStructPool = (HTC_PACKET *) pPacket->ListLink.pNext;
  160. UNLOCK_HTC_RX(target);
  161. pPacket->ListLink.pNext = NULL;
  162. return pPacket;
  163. }
  164. void free_htc_packet_container(HTC_TARGET *target, HTC_PACKET *pPacket)
  165. {
  166. LOCK_HTC_RX(target);
  167. if (NULL == target->pHTCPacketStructPool) {
  168. target->pHTCPacketStructPool = pPacket;
  169. pPacket->ListLink.pNext = NULL;
  170. } else {
  171. pPacket->ListLink.pNext =
  172. (DL_LIST *) target->pHTCPacketStructPool;
  173. target->pHTCPacketStructPool = pPacket;
  174. }
  175. UNLOCK_HTC_RX(target);
  176. }
  177. #ifdef RX_SG_SUPPORT
  178. cdf_nbuf_t rx_sg_to_single_netbuf(HTC_TARGET *target)
  179. {
  180. cdf_nbuf_t skb;
  181. uint8_t *anbdata;
  182. uint8_t *anbdata_new;
  183. uint32_t anblen;
  184. cdf_nbuf_t new_skb = NULL;
  185. uint32_t sg_queue_len;
  186. cdf_nbuf_queue_t *rx_sg_queue = &target->RxSgQueue;
  187. sg_queue_len = cdf_nbuf_queue_len(rx_sg_queue);
  188. if (sg_queue_len <= 1) {
  189. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  190. ("rx_sg_to_single_netbuf: invalid sg queue len %u\n"));
  191. goto _failed;
  192. }
  193. new_skb = cdf_nbuf_alloc(target->ExpRxSgTotalLen, 0, 4, false);
  194. if (new_skb == NULL) {
  195. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  196. ("rx_sg_to_single_netbuf: can't allocate %u size netbuf\n",
  197. target->ExpRxSgTotalLen));
  198. goto _failed;
  199. }
  200. cdf_nbuf_peek_header(new_skb, &anbdata_new, &anblen);
  201. skb = cdf_nbuf_queue_remove(rx_sg_queue);
  202. do {
  203. cdf_nbuf_peek_header(skb, &anbdata, &anblen);
  204. qdf_mem_copy(anbdata_new, anbdata, cdf_nbuf_len(skb));
  205. cdf_nbuf_put_tail(new_skb, cdf_nbuf_len(skb));
  206. anbdata_new += cdf_nbuf_len(skb);
  207. cdf_nbuf_free(skb);
  208. skb = cdf_nbuf_queue_remove(rx_sg_queue);
  209. } while (skb != NULL);
  210. RESET_RX_SG_CONFIG(target);
  211. return new_skb;
  212. _failed:
  213. while ((skb = cdf_nbuf_queue_remove(rx_sg_queue)) != NULL) {
  214. cdf_nbuf_free(skb);
  215. }
  216. RESET_RX_SG_CONFIG(target);
  217. return NULL;
  218. }
  219. #endif
  220. QDF_STATUS htc_rx_completion_handler(void *Context, cdf_nbuf_t netbuf,
  221. uint8_t pipeID)
  222. {
  223. QDF_STATUS status = QDF_STATUS_SUCCESS;
  224. HTC_FRAME_HDR *HtcHdr;
  225. HTC_TARGET *target = (HTC_TARGET *) Context;
  226. uint8_t *netdata;
  227. uint32_t netlen;
  228. HTC_ENDPOINT *pEndpoint;
  229. HTC_PACKET *pPacket;
  230. A_UINT16 payloadLen;
  231. uint32_t trailerlen = 0;
  232. A_UINT8 htc_ep_id;
  233. #ifdef RX_SG_SUPPORT
  234. LOCK_HTC_RX(target);
  235. if (target->IsRxSgInprogress) {
  236. target->CurRxSgTotalLen += cdf_nbuf_len(netbuf);
  237. cdf_nbuf_queue_add(&target->RxSgQueue, netbuf);
  238. if (target->CurRxSgTotalLen == target->ExpRxSgTotalLen) {
  239. netbuf = rx_sg_to_single_netbuf(target);
  240. if (netbuf == NULL) {
  241. UNLOCK_HTC_RX(target);
  242. goto _out;
  243. }
  244. } else {
  245. netbuf = NULL;
  246. UNLOCK_HTC_RX(target);
  247. goto _out;
  248. }
  249. }
  250. UNLOCK_HTC_RX(target);
  251. #endif
  252. netdata = cdf_nbuf_data(netbuf);
  253. netlen = cdf_nbuf_len(netbuf);
  254. HtcHdr = (HTC_FRAME_HDR *) netdata;
  255. do {
  256. htc_ep_id = HTC_GET_FIELD(HtcHdr, HTC_FRAME_HDR, ENDPOINTID);
  257. if (htc_ep_id >= ENDPOINT_MAX) {
  258. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  259. ("HTC Rx: invalid EndpointID=%d\n",
  260. htc_ep_id));
  261. debug_dump_bytes((A_UINT8 *) HtcHdr,
  262. sizeof(HTC_FRAME_HDR), "BAD HTC Header");
  263. status = QDF_STATUS_E_FAILURE;
  264. QDF_BUG(0);
  265. break;
  266. }
  267. pEndpoint = &target->endpoint[htc_ep_id];
  268. /*
  269. * If this endpoint that received a message from the target has
  270. * a to-target HIF pipe whose send completions are polled rather
  271. * than interrupt-driven, this is a good point to ask HIF to check
  272. * whether it has any completed sends to handle.
  273. */
  274. if (pEndpoint->ul_is_polled) {
  275. htc_send_complete_check(pEndpoint, 1);
  276. }
  277. payloadLen = HTC_GET_FIELD(HtcHdr, HTC_FRAME_HDR, PAYLOADLEN);
  278. if (netlen < (payloadLen + HTC_HDR_LENGTH)) {
  279. #ifdef RX_SG_SUPPORT
  280. LOCK_HTC_RX(target);
  281. target->IsRxSgInprogress = true;
  282. cdf_nbuf_queue_init(&target->RxSgQueue);
  283. cdf_nbuf_queue_add(&target->RxSgQueue, netbuf);
  284. target->ExpRxSgTotalLen = (payloadLen + HTC_HDR_LENGTH);
  285. target->CurRxSgTotalLen += netlen;
  286. UNLOCK_HTC_RX(target);
  287. netbuf = NULL;
  288. break;
  289. #else
  290. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  291. ("HTC Rx: insufficient length, got:%d expected =%zu\n",
  292. netlen, payloadLen + HTC_HDR_LENGTH));
  293. debug_dump_bytes((A_UINT8 *) HtcHdr,
  294. sizeof(HTC_FRAME_HDR),
  295. "BAD RX packet length");
  296. status = QDF_STATUS_E_FAILURE;
  297. QDF_BUG(0);
  298. break;
  299. #endif
  300. }
  301. #ifdef HTC_EP_STAT_PROFILING
  302. LOCK_HTC_RX(target);
  303. INC_HTC_EP_STAT(pEndpoint, RxReceived, 1);
  304. UNLOCK_HTC_RX(target);
  305. #endif
  306. /* if (IS_TX_CREDIT_FLOW_ENABLED(pEndpoint)) { */
  307. {
  308. A_UINT8 temp;
  309. A_STATUS temp_status;
  310. /* get flags to check for trailer */
  311. temp = HTC_GET_FIELD(HtcHdr, HTC_FRAME_HDR, FLAGS);
  312. if (temp & HTC_FLAGS_RECV_TRAILER) {
  313. /* extract the trailer length */
  314. temp =
  315. HTC_GET_FIELD(HtcHdr, HTC_FRAME_HDR,
  316. CONTROLBYTES0);
  317. if ((temp < sizeof(HTC_RECORD_HDR))
  318. || (temp > payloadLen)) {
  319. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  320. ("htc_rx_completion_handler, invalid header (payloadlength should be :%d, CB[0] is:%d)\n",
  321. payloadLen, temp));
  322. status = QDF_STATUS_E_INVAL;
  323. break;
  324. }
  325. trailerlen = temp;
  326. /* process trailer data that follows HDR + application payload */
  327. temp_status = htc_process_trailer(target,
  328. ((A_UINT8 *) HtcHdr +
  329. HTC_HDR_LENGTH +
  330. payloadLen - temp),
  331. temp, htc_ep_id);
  332. if (A_FAILED(temp_status)) {
  333. status = QDF_STATUS_E_FAILURE;
  334. break;
  335. }
  336. }
  337. }
  338. if (((int)payloadLen - (int)trailerlen) <= 0) {
  339. /* zero length packet with trailer data, just drop these */
  340. break;
  341. }
  342. if (htc_ep_id == ENDPOINT_0) {
  343. A_UINT16 message_id;
  344. HTC_UNKNOWN_MSG *htc_msg;
  345. int wow_nack = 0;
  346. /* remove HTC header */
  347. cdf_nbuf_pull_head(netbuf, HTC_HDR_LENGTH);
  348. netdata = cdf_nbuf_data(netbuf);
  349. netlen = cdf_nbuf_len(netbuf);
  350. htc_msg = (HTC_UNKNOWN_MSG *) netdata;
  351. message_id =
  352. HTC_GET_FIELD(htc_msg, HTC_UNKNOWN_MSG, MESSAGEID);
  353. switch (message_id) {
  354. default:
  355. /* handle HTC control message */
  356. if (target->CtrlResponseProcessing) {
  357. /* this is a fatal error, target should not be sending unsolicited messages
  358. * on the endpoint 0 */
  359. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  360. ("HTC Rx Ctrl still processing\n"));
  361. status = QDF_STATUS_E_FAILURE;
  362. QDF_BUG(false);
  363. break;
  364. }
  365. LOCK_HTC_RX(target);
  366. target->CtrlResponseLength =
  367. min((int)netlen,
  368. HTC_MAX_CONTROL_MESSAGE_LENGTH);
  369. A_MEMCPY(target->CtrlResponseBuffer, netdata,
  370. target->CtrlResponseLength);
  371. /* Requester will clear this flag */
  372. target->CtrlResponseProcessing = true;
  373. UNLOCK_HTC_RX(target);
  374. qdf_event_set(&target->ctrl_response_valid);
  375. break;
  376. case HTC_MSG_SEND_SUSPEND_COMPLETE:
  377. wow_nack = 0;
  378. LOCK_HTC_CREDIT(target);
  379. htc_credit_record(HTC_SUSPEND_ACK,
  380. pEndpoint->TxCredits,
  381. HTC_PACKET_QUEUE_DEPTH(
  382. &pEndpoint->TxQueue));
  383. UNLOCK_HTC_CREDIT(target);
  384. target->HTCInitInfo.
  385. TargetSendSuspendComplete((void *)
  386. &wow_nack);
  387. break;
  388. case HTC_MSG_NACK_SUSPEND:
  389. wow_nack = 1;
  390. LOCK_HTC_CREDIT(target);
  391. htc_credit_record(HTC_SUSPEND_ACK,
  392. pEndpoint->TxCredits,
  393. HTC_PACKET_QUEUE_DEPTH(
  394. &pEndpoint->TxQueue));
  395. UNLOCK_HTC_CREDIT(target);
  396. target->HTCInitInfo.
  397. TargetSendSuspendComplete((void *)
  398. &wow_nack);
  399. break;
  400. }
  401. cdf_nbuf_free(netbuf);
  402. netbuf = NULL;
  403. break;
  404. }
  405. /* the current message based HIF architecture allocates net bufs for recv packets
  406. * since this layer bridges that HIF to upper layers , which expects HTC packets,
  407. * we form the packets here
  408. * TODO_FIXME */
  409. pPacket = allocate_htc_packet_container(target);
  410. if (NULL == pPacket) {
  411. status = QDF_STATUS_E_RESOURCES;
  412. break;
  413. }
  414. pPacket->Status = QDF_STATUS_SUCCESS;
  415. pPacket->Endpoint = htc_ep_id;
  416. pPacket->pPktContext = netbuf;
  417. pPacket->pBuffer = cdf_nbuf_data(netbuf) + HTC_HDR_LENGTH;
  418. pPacket->ActualLength = netlen - HTC_HEADER_LEN - trailerlen;
  419. cdf_nbuf_pull_head(netbuf, HTC_HEADER_LEN);
  420. cdf_nbuf_set_pktlen(netbuf, pPacket->ActualLength);
  421. recv_packet_completion(target, pEndpoint, pPacket);
  422. /* recover the packet container */
  423. free_htc_packet_container(target, pPacket);
  424. netbuf = NULL;
  425. } while (false);
  426. #ifdef RX_SG_SUPPORT
  427. _out:
  428. #endif
  429. if (netbuf != NULL) {
  430. cdf_nbuf_free(netbuf);
  431. }
  432. return status;
  433. }
  434. A_STATUS htc_add_receive_pkt_multiple(HTC_HANDLE HTCHandle,
  435. HTC_PACKET_QUEUE *pPktQueue)
  436. {
  437. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  438. HTC_ENDPOINT *pEndpoint;
  439. HTC_PACKET *pFirstPacket;
  440. A_STATUS status = A_OK;
  441. HTC_PACKET *pPacket;
  442. pFirstPacket = htc_get_pkt_at_head(pPktQueue);
  443. if (NULL == pFirstPacket) {
  444. A_ASSERT(false);
  445. return A_EINVAL;
  446. }
  447. AR_DEBUG_ASSERT(pFirstPacket->Endpoint < ENDPOINT_MAX);
  448. AR_DEBUG_PRINTF(ATH_DEBUG_RECV,
  449. ("+- htc_add_receive_pkt_multiple : endPointId: %d, cnt:%d, length: %d\n",
  450. pFirstPacket->Endpoint,
  451. HTC_PACKET_QUEUE_DEPTH(pPktQueue),
  452. pFirstPacket->BufferLength));
  453. pEndpoint = &target->endpoint[pFirstPacket->Endpoint];
  454. LOCK_HTC_RX(target);
  455. do {
  456. if (HTC_STOPPING(target)) {
  457. status = A_ERROR;
  458. break;
  459. }
  460. /* store receive packets */
  461. HTC_PACKET_QUEUE_TRANSFER_TO_TAIL(&pEndpoint->RxBufferHoldQueue,
  462. pPktQueue);
  463. } while (false);
  464. UNLOCK_HTC_RX(target);
  465. if (A_FAILED(status)) {
  466. /* walk through queue and mark each one canceled */
  467. HTC_PACKET_QUEUE_ITERATE_ALLOW_REMOVE(pPktQueue, pPacket) {
  468. pPacket->Status = A_ECANCELED;
  469. }
  470. HTC_PACKET_QUEUE_ITERATE_END;
  471. do_recv_completion(pEndpoint, pPktQueue);
  472. }
  473. return status;
  474. }
  475. A_STATUS htc_add_receive_pkt(HTC_HANDLE HTCHandle, HTC_PACKET *pPacket)
  476. {
  477. HTC_PACKET_QUEUE queue;
  478. INIT_HTC_PACKET_QUEUE_AND_ADD(&queue, pPacket);
  479. return htc_add_receive_pkt_multiple(HTCHandle, &queue);
  480. }
  481. void htc_flush_rx_hold_queue(HTC_TARGET *target, HTC_ENDPOINT *pEndpoint)
  482. {
  483. HTC_PACKET *pPacket;
  484. HTC_PACKET_QUEUE container;
  485. LOCK_HTC_RX(target);
  486. while (1) {
  487. pPacket = htc_packet_dequeue(&pEndpoint->RxBufferHoldQueue);
  488. if (NULL == pPacket) {
  489. break;
  490. }
  491. UNLOCK_HTC_RX(target);
  492. pPacket->Status = A_ECANCELED;
  493. pPacket->ActualLength = 0;
  494. AR_DEBUG_PRINTF(ATH_DEBUG_RECV,
  495. (" Flushing RX packet:%p, length:%d, ep:%d \n",
  496. pPacket, pPacket->BufferLength,
  497. pPacket->Endpoint));
  498. INIT_HTC_PACKET_QUEUE_AND_ADD(&container, pPacket);
  499. /* give the packet back */
  500. do_recv_completion(pEndpoint, &container);
  501. LOCK_HTC_RX(target);
  502. }
  503. UNLOCK_HTC_RX(target);
  504. }
  505. void htc_recv_init(HTC_TARGET *target)
  506. {
  507. /* Initialize ctrl_response_valid to block */
  508. qdf_event_create(&target->ctrl_response_valid);
  509. }
  510. /* polling routine to wait for a control packet to be received */
  511. A_STATUS htc_wait_recv_ctrl_message(HTC_TARGET *target)
  512. {
  513. /* int count = HTC_TARGET_MAX_RESPONSE_POLL; */
  514. AR_DEBUG_PRINTF(ATH_DEBUG_TRC, ("+HTCWaitCtrlMessageRecv\n"));
  515. /* Wait for BMI request/response transaction to complete */
  516. if (qdf_wait_single_event(&target->ctrl_response_valid,
  517. qdf_system_msecs_to_ticks(HTC_CONTROL_RX_TIMEOUT))) {
  518. QDF_BUG(0);
  519. return A_ERROR;
  520. }
  521. LOCK_HTC_RX(target);
  522. /* caller will clear this flag */
  523. target->CtrlResponseProcessing = true;
  524. UNLOCK_HTC_RX(target);
  525. #if 0
  526. while (count > 0) {
  527. LOCK_HTC_RX(target);
  528. if (target->CtrlResponseValid) {
  529. target->CtrlResponseValid = false;
  530. /* caller will clear this flag */
  531. target->CtrlResponseProcessing = true;
  532. UNLOCK_HTC_RX(target);
  533. break;
  534. }
  535. UNLOCK_HTC_RX(target);
  536. count--;
  537. A_MSLEEP(HTC_TARGET_RESPONSE_POLL_MS);
  538. }
  539. if (count <= 0) {
  540. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  541. ("-HTCWaitCtrlMessageRecv: Timeout!\n"));
  542. return A_ECOMM;
  543. }
  544. #endif
  545. AR_DEBUG_PRINTF(ATH_DEBUG_TRC, ("-HTCWaitCtrlMessageRecv success\n"));
  546. return A_OK;
  547. }
  548. static A_STATUS htc_process_trailer(HTC_TARGET *target,
  549. A_UINT8 *pBuffer,
  550. int Length, HTC_ENDPOINT_ID FromEndpoint)
  551. {
  552. HTC_RECORD_HDR *pRecord;
  553. A_UINT8 htc_rec_id;
  554. A_UINT8 htc_rec_len;
  555. A_UINT8 *pRecordBuf;
  556. A_UINT8 *pOrigBuffer;
  557. int origLength;
  558. A_STATUS status;
  559. AR_DEBUG_PRINTF(ATH_DEBUG_RECV,
  560. ("+htc_process_trailer (length:%d) \n", Length));
  561. if (AR_DEBUG_LVL_CHECK(ATH_DEBUG_RECV)) {
  562. AR_DEBUG_PRINTBUF(pBuffer, Length, "Recv Trailer");
  563. }
  564. pOrigBuffer = pBuffer;
  565. origLength = Length;
  566. status = A_OK;
  567. while (Length > 0) {
  568. if (Length < sizeof(HTC_RECORD_HDR)) {
  569. status = A_EPROTO;
  570. break;
  571. }
  572. /* these are byte aligned structs */
  573. pRecord = (HTC_RECORD_HDR *) pBuffer;
  574. Length -= sizeof(HTC_RECORD_HDR);
  575. pBuffer += sizeof(HTC_RECORD_HDR);
  576. htc_rec_len = HTC_GET_FIELD(pRecord, HTC_RECORD_HDR, LENGTH);
  577. htc_rec_id = HTC_GET_FIELD(pRecord, HTC_RECORD_HDR, RECORDID);
  578. if (htc_rec_len > Length) {
  579. /* no room left in buffer for record */
  580. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  581. (" invalid record length: %d (id:%d) buffer has: %d bytes left \n",
  582. htc_rec_len, htc_rec_id, Length));
  583. status = A_EPROTO;
  584. break;
  585. }
  586. /* start of record follows the header */
  587. pRecordBuf = pBuffer;
  588. switch (htc_rec_id) {
  589. case HTC_RECORD_CREDITS:
  590. AR_DEBUG_ASSERT(htc_rec_len >=
  591. sizeof(HTC_CREDIT_REPORT));
  592. htc_process_credit_rpt(target,
  593. (HTC_CREDIT_REPORT *) pRecordBuf,
  594. htc_rec_len /
  595. (sizeof(HTC_CREDIT_REPORT)),
  596. FromEndpoint);
  597. break;
  598. #ifdef HIF_SDIO
  599. case HTC_RECORD_LOOKAHEAD:
  600. /* Process in HIF layer */
  601. break;
  602. case HTC_RECORD_LOOKAHEAD_BUNDLE:
  603. /* Process in HIF layer */
  604. break;
  605. #endif /* HIF_SDIO */
  606. default:
  607. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  608. (" HTC unhandled record: id:%d length:%d \n",
  609. htc_rec_id, htc_rec_len));
  610. break;
  611. }
  612. if (A_FAILED(status)) {
  613. break;
  614. }
  615. /* advance buffer past this record for next time around */
  616. pBuffer += htc_rec_len;
  617. Length -= htc_rec_len;
  618. }
  619. if (A_FAILED(status)) {
  620. debug_dump_bytes(pOrigBuffer, origLength, "BAD Recv Trailer");
  621. }
  622. AR_DEBUG_PRINTF(ATH_DEBUG_RECV, ("-htc_process_trailer \n"));
  623. return status;
  624. }