htc_recv.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748
  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 <qdf_nbuf.h> /* qdf_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. qdf_nbuf_t rx_sg_to_single_netbuf(HTC_TARGET *target)
  179. {
  180. qdf_nbuf_t skb;
  181. uint8_t *anbdata;
  182. uint8_t *anbdata_new;
  183. uint32_t anblen;
  184. qdf_nbuf_t new_skb = NULL;
  185. uint32_t sg_queue_len;
  186. qdf_nbuf_queue_t *rx_sg_queue = &target->RxSgQueue;
  187. sg_queue_len = qdf_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 = qdf_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. qdf_nbuf_peek_header(new_skb, &anbdata_new, &anblen);
  201. skb = qdf_nbuf_queue_remove(rx_sg_queue);
  202. do {
  203. qdf_nbuf_peek_header(skb, &anbdata, &anblen);
  204. qdf_mem_copy(anbdata_new, anbdata, qdf_nbuf_len(skb));
  205. qdf_nbuf_put_tail(new_skb, qdf_nbuf_len(skb));
  206. anbdata_new += qdf_nbuf_len(skb);
  207. qdf_nbuf_free(skb);
  208. skb = qdf_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 = qdf_nbuf_queue_remove(rx_sg_queue)) != NULL)
  214. qdf_nbuf_free(skb);
  215. RESET_RX_SG_CONFIG(target);
  216. return NULL;
  217. }
  218. #endif
  219. QDF_STATUS htc_rx_completion_handler(void *Context, qdf_nbuf_t netbuf,
  220. uint8_t pipeID)
  221. {
  222. QDF_STATUS status = QDF_STATUS_SUCCESS;
  223. HTC_FRAME_HDR *HtcHdr;
  224. HTC_TARGET *target = (HTC_TARGET *) Context;
  225. uint8_t *netdata;
  226. uint32_t netlen;
  227. HTC_ENDPOINT *pEndpoint;
  228. HTC_PACKET *pPacket;
  229. A_UINT16 payloadLen;
  230. uint32_t trailerlen = 0;
  231. A_UINT8 htc_ep_id;
  232. #ifdef RX_SG_SUPPORT
  233. LOCK_HTC_RX(target);
  234. if (target->IsRxSgInprogress) {
  235. target->CurRxSgTotalLen += qdf_nbuf_len(netbuf);
  236. qdf_nbuf_queue_add(&target->RxSgQueue, netbuf);
  237. if (target->CurRxSgTotalLen == target->ExpRxSgTotalLen) {
  238. netbuf = rx_sg_to_single_netbuf(target);
  239. if (netbuf == NULL) {
  240. UNLOCK_HTC_RX(target);
  241. goto _out;
  242. }
  243. } else {
  244. netbuf = NULL;
  245. UNLOCK_HTC_RX(target);
  246. goto _out;
  247. }
  248. }
  249. UNLOCK_HTC_RX(target);
  250. #endif
  251. netdata = qdf_nbuf_data(netbuf);
  252. netlen = qdf_nbuf_len(netbuf);
  253. HtcHdr = (HTC_FRAME_HDR *) netdata;
  254. do {
  255. htc_ep_id = HTC_GET_FIELD(HtcHdr, HTC_FRAME_HDR, ENDPOINTID);
  256. if (htc_ep_id >= ENDPOINT_MAX) {
  257. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  258. ("HTC Rx: invalid EndpointID=%d\n",
  259. htc_ep_id));
  260. debug_dump_bytes((A_UINT8 *) HtcHdr,
  261. sizeof(HTC_FRAME_HDR), "BAD HTC Header");
  262. status = QDF_STATUS_E_FAILURE;
  263. QDF_BUG(0);
  264. break;
  265. }
  266. pEndpoint = &target->endpoint[htc_ep_id];
  267. /*
  268. * If this endpoint that received a message from the target has
  269. * a to-target HIF pipe whose send completions are polled rather
  270. * than interrupt-driven, this is a good point to ask HIF to check
  271. * whether it has any completed sends to handle.
  272. */
  273. if (pEndpoint->ul_is_polled) {
  274. htc_send_complete_check(pEndpoint, 1);
  275. }
  276. payloadLen = HTC_GET_FIELD(HtcHdr, HTC_FRAME_HDR, PAYLOADLEN);
  277. if (netlen < (payloadLen + HTC_HDR_LENGTH)) {
  278. #ifdef RX_SG_SUPPORT
  279. LOCK_HTC_RX(target);
  280. target->IsRxSgInprogress = true;
  281. qdf_nbuf_queue_init(&target->RxSgQueue);
  282. qdf_nbuf_queue_add(&target->RxSgQueue, netbuf);
  283. target->ExpRxSgTotalLen = (payloadLen + HTC_HDR_LENGTH);
  284. target->CurRxSgTotalLen += netlen;
  285. UNLOCK_HTC_RX(target);
  286. netbuf = NULL;
  287. break;
  288. #else
  289. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  290. ("HTC Rx: insufficient length, got:%d expected =%zu\n",
  291. netlen, payloadLen + HTC_HDR_LENGTH));
  292. debug_dump_bytes((A_UINT8 *) HtcHdr,
  293. sizeof(HTC_FRAME_HDR),
  294. "BAD RX packet length");
  295. status = QDF_STATUS_E_FAILURE;
  296. QDF_BUG(0);
  297. break;
  298. #endif
  299. }
  300. #ifdef HTC_EP_STAT_PROFILING
  301. LOCK_HTC_RX(target);
  302. INC_HTC_EP_STAT(pEndpoint, RxReceived, 1);
  303. UNLOCK_HTC_RX(target);
  304. #endif
  305. /* if (IS_TX_CREDIT_FLOW_ENABLED(pEndpoint)) { */
  306. {
  307. A_UINT8 temp;
  308. A_STATUS temp_status;
  309. /* get flags to check for trailer */
  310. temp = HTC_GET_FIELD(HtcHdr, HTC_FRAME_HDR, FLAGS);
  311. if (temp & HTC_FLAGS_RECV_TRAILER) {
  312. /* extract the trailer length */
  313. temp =
  314. HTC_GET_FIELD(HtcHdr, HTC_FRAME_HDR,
  315. CONTROLBYTES0);
  316. if ((temp < sizeof(HTC_RECORD_HDR))
  317. || (temp > payloadLen)) {
  318. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  319. ("htc_rx_completion_handler, invalid header (payloadlength should be :%d, CB[0] is:%d)\n",
  320. payloadLen, temp));
  321. status = QDF_STATUS_E_INVAL;
  322. break;
  323. }
  324. trailerlen = temp;
  325. /* process trailer data that follows HDR + application payload */
  326. temp_status = htc_process_trailer(target,
  327. ((A_UINT8 *) HtcHdr +
  328. HTC_HDR_LENGTH +
  329. payloadLen - temp),
  330. temp, htc_ep_id);
  331. if (A_FAILED(temp_status)) {
  332. status = QDF_STATUS_E_FAILURE;
  333. break;
  334. }
  335. }
  336. }
  337. if (((int)payloadLen - (int)trailerlen) <= 0) {
  338. /* zero length packet with trailer data, just drop these */
  339. break;
  340. }
  341. if (htc_ep_id == ENDPOINT_0) {
  342. A_UINT16 message_id;
  343. HTC_UNKNOWN_MSG *htc_msg;
  344. int wow_nack = 0;
  345. /* remove HTC header */
  346. qdf_nbuf_pull_head(netbuf, HTC_HDR_LENGTH);
  347. netdata = qdf_nbuf_data(netbuf);
  348. netlen = qdf_nbuf_len(netbuf);
  349. htc_msg = (HTC_UNKNOWN_MSG *) netdata;
  350. message_id =
  351. HTC_GET_FIELD(htc_msg, HTC_UNKNOWN_MSG, MESSAGEID);
  352. switch (message_id) {
  353. default:
  354. /* handle HTC control message */
  355. if (target->CtrlResponseProcessing) {
  356. /* this is a fatal error, target should not be sending unsolicited messages
  357. * on the endpoint 0 */
  358. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  359. ("HTC Rx Ctrl still processing\n"));
  360. status = QDF_STATUS_E_FAILURE;
  361. QDF_BUG(false);
  362. break;
  363. }
  364. LOCK_HTC_RX(target);
  365. target->CtrlResponseLength =
  366. min((int)netlen,
  367. HTC_MAX_CONTROL_MESSAGE_LENGTH);
  368. A_MEMCPY(target->CtrlResponseBuffer, netdata,
  369. target->CtrlResponseLength);
  370. /* Requester will clear this flag */
  371. target->CtrlResponseProcessing = true;
  372. UNLOCK_HTC_RX(target);
  373. qdf_event_set(&target->ctrl_response_valid);
  374. break;
  375. case HTC_MSG_SEND_SUSPEND_COMPLETE:
  376. wow_nack = 0;
  377. LOCK_HTC_CREDIT(target);
  378. htc_credit_record(HTC_SUSPEND_ACK,
  379. pEndpoint->TxCredits,
  380. HTC_PACKET_QUEUE_DEPTH(
  381. &pEndpoint->TxQueue));
  382. UNLOCK_HTC_CREDIT(target);
  383. target->HTCInitInfo.
  384. TargetSendSuspendComplete((void *)
  385. &wow_nack);
  386. break;
  387. case HTC_MSG_NACK_SUSPEND:
  388. wow_nack = 1;
  389. LOCK_HTC_CREDIT(target);
  390. htc_credit_record(HTC_SUSPEND_ACK,
  391. pEndpoint->TxCredits,
  392. HTC_PACKET_QUEUE_DEPTH(
  393. &pEndpoint->TxQueue));
  394. UNLOCK_HTC_CREDIT(target);
  395. target->HTCInitInfo.
  396. TargetSendSuspendComplete((void *)
  397. &wow_nack);
  398. break;
  399. }
  400. qdf_nbuf_free(netbuf);
  401. netbuf = NULL;
  402. break;
  403. }
  404. /* the current message based HIF architecture allocates net bufs for recv packets
  405. * since this layer bridges that HIF to upper layers , which expects HTC packets,
  406. * we form the packets here
  407. * TODO_FIXME */
  408. pPacket = allocate_htc_packet_container(target);
  409. if (NULL == pPacket) {
  410. status = QDF_STATUS_E_RESOURCES;
  411. break;
  412. }
  413. pPacket->Status = QDF_STATUS_SUCCESS;
  414. pPacket->Endpoint = htc_ep_id;
  415. pPacket->pPktContext = netbuf;
  416. pPacket->pBuffer = qdf_nbuf_data(netbuf) + HTC_HDR_LENGTH;
  417. pPacket->ActualLength = netlen - HTC_HEADER_LEN - trailerlen;
  418. qdf_nbuf_pull_head(netbuf, HTC_HEADER_LEN);
  419. qdf_nbuf_set_pktlen(netbuf, pPacket->ActualLength);
  420. recv_packet_completion(target, pEndpoint, pPacket);
  421. /* recover the packet container */
  422. free_htc_packet_container(target, pPacket);
  423. netbuf = NULL;
  424. } while (false);
  425. #ifdef RX_SG_SUPPORT
  426. _out:
  427. #endif
  428. if (netbuf != NULL) {
  429. qdf_nbuf_free(netbuf);
  430. }
  431. return status;
  432. }
  433. A_STATUS htc_add_receive_pkt_multiple(HTC_HANDLE HTCHandle,
  434. HTC_PACKET_QUEUE *pPktQueue)
  435. {
  436. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  437. HTC_ENDPOINT *pEndpoint;
  438. HTC_PACKET *pFirstPacket;
  439. A_STATUS status = A_OK;
  440. HTC_PACKET *pPacket;
  441. pFirstPacket = htc_get_pkt_at_head(pPktQueue);
  442. if (NULL == pFirstPacket) {
  443. A_ASSERT(false);
  444. return A_EINVAL;
  445. }
  446. AR_DEBUG_ASSERT(pFirstPacket->Endpoint < ENDPOINT_MAX);
  447. AR_DEBUG_PRINTF(ATH_DEBUG_RECV,
  448. ("+- htc_add_receive_pkt_multiple : endPointId: %d, cnt:%d, length: %d\n",
  449. pFirstPacket->Endpoint,
  450. HTC_PACKET_QUEUE_DEPTH(pPktQueue),
  451. pFirstPacket->BufferLength));
  452. pEndpoint = &target->endpoint[pFirstPacket->Endpoint];
  453. LOCK_HTC_RX(target);
  454. do {
  455. if (HTC_STOPPING(target)) {
  456. status = A_ERROR;
  457. break;
  458. }
  459. /* store receive packets */
  460. HTC_PACKET_QUEUE_TRANSFER_TO_TAIL(&pEndpoint->RxBufferHoldQueue,
  461. pPktQueue);
  462. } while (false);
  463. UNLOCK_HTC_RX(target);
  464. if (A_FAILED(status)) {
  465. /* walk through queue and mark each one canceled */
  466. HTC_PACKET_QUEUE_ITERATE_ALLOW_REMOVE(pPktQueue, pPacket) {
  467. pPacket->Status = A_ECANCELED;
  468. }
  469. HTC_PACKET_QUEUE_ITERATE_END;
  470. do_recv_completion(pEndpoint, pPktQueue);
  471. }
  472. return status;
  473. }
  474. A_STATUS htc_add_receive_pkt(HTC_HANDLE HTCHandle, HTC_PACKET *pPacket)
  475. {
  476. HTC_PACKET_QUEUE queue;
  477. INIT_HTC_PACKET_QUEUE_AND_ADD(&queue, pPacket);
  478. return htc_add_receive_pkt_multiple(HTCHandle, &queue);
  479. }
  480. void htc_flush_rx_hold_queue(HTC_TARGET *target, HTC_ENDPOINT *pEndpoint)
  481. {
  482. HTC_PACKET *pPacket;
  483. HTC_PACKET_QUEUE container;
  484. LOCK_HTC_RX(target);
  485. while (1) {
  486. pPacket = htc_packet_dequeue(&pEndpoint->RxBufferHoldQueue);
  487. if (NULL == pPacket) {
  488. break;
  489. }
  490. UNLOCK_HTC_RX(target);
  491. pPacket->Status = A_ECANCELED;
  492. pPacket->ActualLength = 0;
  493. AR_DEBUG_PRINTF(ATH_DEBUG_RECV,
  494. (" Flushing RX packet:%p, length:%d, ep:%d \n",
  495. pPacket, pPacket->BufferLength,
  496. pPacket->Endpoint));
  497. INIT_HTC_PACKET_QUEUE_AND_ADD(&container, pPacket);
  498. /* give the packet back */
  499. do_recv_completion(pEndpoint, &container);
  500. LOCK_HTC_RX(target);
  501. }
  502. UNLOCK_HTC_RX(target);
  503. }
  504. void htc_recv_init(HTC_TARGET *target)
  505. {
  506. /* Initialize ctrl_response_valid to block */
  507. qdf_event_create(&target->ctrl_response_valid);
  508. }
  509. /* polling routine to wait for a control packet to be received */
  510. A_STATUS htc_wait_recv_ctrl_message(HTC_TARGET *target)
  511. {
  512. /* int count = HTC_TARGET_MAX_RESPONSE_POLL; */
  513. AR_DEBUG_PRINTF(ATH_DEBUG_TRC, ("+HTCWaitCtrlMessageRecv\n"));
  514. /* Wait for BMI request/response transaction to complete */
  515. if (qdf_wait_single_event(&target->ctrl_response_valid,
  516. qdf_system_msecs_to_ticks(HTC_CONTROL_RX_TIMEOUT))) {
  517. QDF_BUG(0);
  518. return A_ERROR;
  519. }
  520. LOCK_HTC_RX(target);
  521. /* caller will clear this flag */
  522. target->CtrlResponseProcessing = true;
  523. UNLOCK_HTC_RX(target);
  524. #if 0
  525. while (count > 0) {
  526. LOCK_HTC_RX(target);
  527. if (target->CtrlResponseValid) {
  528. target->CtrlResponseValid = false;
  529. /* caller will clear this flag */
  530. target->CtrlResponseProcessing = true;
  531. UNLOCK_HTC_RX(target);
  532. break;
  533. }
  534. UNLOCK_HTC_RX(target);
  535. count--;
  536. A_MSLEEP(HTC_TARGET_RESPONSE_POLL_MS);
  537. }
  538. if (count <= 0) {
  539. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  540. ("-HTCWaitCtrlMessageRecv: Timeout!\n"));
  541. return A_ECOMM;
  542. }
  543. #endif
  544. AR_DEBUG_PRINTF(ATH_DEBUG_TRC, ("-HTCWaitCtrlMessageRecv success\n"));
  545. return A_OK;
  546. }
  547. static A_STATUS htc_process_trailer(HTC_TARGET *target,
  548. A_UINT8 *pBuffer,
  549. int Length, HTC_ENDPOINT_ID FromEndpoint)
  550. {
  551. HTC_RECORD_HDR *pRecord;
  552. A_UINT8 htc_rec_id;
  553. A_UINT8 htc_rec_len;
  554. A_UINT8 *pRecordBuf;
  555. A_UINT8 *pOrigBuffer;
  556. int origLength;
  557. A_STATUS status;
  558. AR_DEBUG_PRINTF(ATH_DEBUG_RECV,
  559. ("+htc_process_trailer (length:%d) \n", Length));
  560. if (AR_DEBUG_LVL_CHECK(ATH_DEBUG_RECV)) {
  561. AR_DEBUG_PRINTBUF(pBuffer, Length, "Recv Trailer");
  562. }
  563. pOrigBuffer = pBuffer;
  564. origLength = Length;
  565. status = A_OK;
  566. while (Length > 0) {
  567. if (Length < sizeof(HTC_RECORD_HDR)) {
  568. status = A_EPROTO;
  569. break;
  570. }
  571. /* these are byte aligned structs */
  572. pRecord = (HTC_RECORD_HDR *) pBuffer;
  573. Length -= sizeof(HTC_RECORD_HDR);
  574. pBuffer += sizeof(HTC_RECORD_HDR);
  575. htc_rec_len = HTC_GET_FIELD(pRecord, HTC_RECORD_HDR, LENGTH);
  576. htc_rec_id = HTC_GET_FIELD(pRecord, HTC_RECORD_HDR, RECORDID);
  577. if (htc_rec_len > Length) {
  578. /* no room left in buffer for record */
  579. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  580. (" invalid record length: %d (id:%d) buffer has: %d bytes left \n",
  581. htc_rec_len, htc_rec_id, Length));
  582. status = A_EPROTO;
  583. break;
  584. }
  585. /* start of record follows the header */
  586. pRecordBuf = pBuffer;
  587. switch (htc_rec_id) {
  588. case HTC_RECORD_CREDITS:
  589. AR_DEBUG_ASSERT(htc_rec_len >=
  590. sizeof(HTC_CREDIT_REPORT));
  591. htc_process_credit_rpt(target,
  592. (HTC_CREDIT_REPORT *) pRecordBuf,
  593. htc_rec_len /
  594. (sizeof(HTC_CREDIT_REPORT)),
  595. FromEndpoint);
  596. break;
  597. #ifdef HIF_SDIO
  598. case HTC_RECORD_LOOKAHEAD:
  599. /* Process in HIF layer */
  600. break;
  601. case HTC_RECORD_LOOKAHEAD_BUNDLE:
  602. /* Process in HIF layer */
  603. break;
  604. #endif /* HIF_SDIO */
  605. default:
  606. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  607. (" HTC unhandled record: id:%d length:%d \n",
  608. htc_rec_id, htc_rec_len));
  609. break;
  610. }
  611. if (A_FAILED(status)) {
  612. break;
  613. }
  614. /* advance buffer past this record for next time around */
  615. pBuffer += htc_rec_len;
  616. Length -= htc_rec_len;
  617. }
  618. if (A_FAILED(status)) {
  619. debug_dump_bytes(pOrigBuffer, origLength, "BAD Recv Trailer");
  620. }
  621. AR_DEBUG_PRINTF(ATH_DEBUG_RECV, ("-htc_process_trailer \n"));
  622. return status;
  623. }