htc.c 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125
  1. /*
  2. * Copyright (c) 2013-2019 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 <hif.h>
  22. #include <qdf_nbuf.h> /* qdf_nbuf_t */
  23. #include <qdf_types.h> /* qdf_print */
  24. #define MAX_HTC_RX_BUNDLE 2
  25. #if defined(WLAN_DEBUG) || defined(DEBUG)
  26. static ATH_DEBUG_MASK_DESCRIPTION g_htc_debug_description[] = {
  27. {ATH_DEBUG_SEND, "Send"},
  28. {ATH_DEBUG_RECV, "Recv"},
  29. {ATH_DEBUG_SYNC, "Sync"},
  30. {ATH_DEBUG_DUMP, "Dump Data (RX or TX)"},
  31. {ATH_DEBUG_SETUP, "Setup"},
  32. };
  33. ATH_DEBUG_INSTANTIATE_MODULE_VAR(htc,
  34. "htc",
  35. "Host Target Communications",
  36. ATH_DEBUG_MASK_DEFAULTS | ATH_DEBUG_INFO |
  37. ATH_DEBUG_SETUP,
  38. ATH_DEBUG_DESCRIPTION_COUNT
  39. (g_htc_debug_description),
  40. g_htc_debug_description);
  41. #endif
  42. #if (defined(WMI_MULTI_MAC_SVC) || defined(QCA_WIFI_QCA8074) || \
  43. defined(QCA_WIFI_QCA6018))
  44. static const uint32_t svc_id[] = {WMI_CONTROL_SVC, WMI_CONTROL_SVC_WMAC1,
  45. WMI_CONTROL_SVC_WMAC2};
  46. #else
  47. static const uint32_t svc_id[] = {WMI_CONTROL_SVC};
  48. #endif
  49. extern unsigned int htc_credit_flow;
  50. static void reset_endpoint_states(HTC_TARGET *target);
  51. static void destroy_htc_tx_ctrl_packet(HTC_PACKET *pPacket)
  52. {
  53. qdf_nbuf_t netbuf;
  54. netbuf = (qdf_nbuf_t) GET_HTC_PACKET_NET_BUF_CONTEXT(pPacket);
  55. if (netbuf)
  56. qdf_nbuf_free(netbuf);
  57. qdf_mem_free(pPacket);
  58. }
  59. static HTC_PACKET *build_htc_tx_ctrl_packet(qdf_device_t osdev)
  60. {
  61. HTC_PACKET *pPacket = NULL;
  62. qdf_nbuf_t netbuf;
  63. do {
  64. pPacket = (HTC_PACKET *) qdf_mem_malloc(sizeof(HTC_PACKET));
  65. if (!pPacket)
  66. break;
  67. netbuf = qdf_nbuf_alloc(osdev, HTC_CONTROL_BUFFER_SIZE,
  68. 20, 4, true);
  69. if (!netbuf) {
  70. qdf_mem_free(pPacket);
  71. pPacket = NULL;
  72. break;
  73. }
  74. SET_HTC_PACKET_NET_BUF_CONTEXT(pPacket, netbuf);
  75. } while (false);
  76. return pPacket;
  77. }
  78. void htc_free_control_tx_packet(HTC_TARGET *target, HTC_PACKET *pPacket)
  79. {
  80. #ifdef TODO_FIXME
  81. LOCK_HTC(target);
  82. HTC_PACKET_ENQUEUE(&target->ControlBufferTXFreeList, pPacket);
  83. UNLOCK_HTC(target);
  84. /* TODO_FIXME netbufs cannot be RESET! */
  85. #else
  86. destroy_htc_tx_ctrl_packet(pPacket);
  87. #endif
  88. }
  89. HTC_PACKET *htc_alloc_control_tx_packet(HTC_TARGET *target)
  90. {
  91. #ifdef TODO_FIXME
  92. HTC_PACKET *pPacket;
  93. LOCK_HTC(target);
  94. pPacket = htc_packet_dequeue(&target->ControlBufferTXFreeList);
  95. UNLOCK_HTC(target);
  96. return pPacket;
  97. #else
  98. return build_htc_tx_ctrl_packet(target->osdev);
  99. #endif
  100. }
  101. /* Set the target failure handling callback */
  102. void htc_set_target_failure_callback(HTC_HANDLE HTCHandle,
  103. HTC_TARGET_FAILURE Callback)
  104. {
  105. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  106. target->HTCInitInfo.TargetFailure = Callback;
  107. }
  108. void htc_dump(HTC_HANDLE HTCHandle, uint8_t CmdId, bool start)
  109. {
  110. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  111. hif_dump(target->hif_dev, CmdId, start);
  112. }
  113. /* cleanup the HTC instance */
  114. static void htc_cleanup(HTC_TARGET *target)
  115. {
  116. HTC_PACKET *pPacket;
  117. int i;
  118. HTC_ENDPOINT *endpoint;
  119. HTC_PACKET_QUEUE *pkt_queue;
  120. qdf_nbuf_t netbuf;
  121. if (target->hif_dev) {
  122. hif_detach_htc(target->hif_dev);
  123. hif_mask_interrupt_call(target->hif_dev);
  124. target->hif_dev = NULL;
  125. }
  126. while (true) {
  127. pPacket = allocate_htc_packet_container(target);
  128. if (!pPacket)
  129. break;
  130. qdf_mem_free(pPacket);
  131. }
  132. LOCK_HTC_TX(target);
  133. pPacket = target->pBundleFreeList;
  134. target->pBundleFreeList = NULL;
  135. UNLOCK_HTC_TX(target);
  136. while (pPacket) {
  137. HTC_PACKET *pPacketTmp = (HTC_PACKET *) pPacket->ListLink.pNext;
  138. netbuf = GET_HTC_PACKET_NET_BUF_CONTEXT(pPacket);
  139. if (netbuf)
  140. qdf_nbuf_free(netbuf);
  141. pkt_queue = pPacket->pContext;
  142. if (pkt_queue)
  143. qdf_mem_free(pkt_queue);
  144. qdf_mem_free(pPacket);
  145. pPacket = pPacketTmp;
  146. }
  147. #ifdef TODO_FIXME
  148. while (true) {
  149. pPacket = htc_alloc_control_tx_packet(target);
  150. if (!pPacket)
  151. break;
  152. netbuf = (qdf_nbuf_t) GET_HTC_PACKET_NET_BUF_CONTEXT(pPacket);
  153. if (netbuf)
  154. qdf_nbuf_free(netbuf);
  155. qdf_mem_free(pPacket);
  156. }
  157. #endif
  158. htc_flush_endpoint_txlookupQ(target, ENDPOINT_0, true);
  159. qdf_spinlock_destroy(&target->HTCLock);
  160. qdf_spinlock_destroy(&target->HTCRxLock);
  161. qdf_spinlock_destroy(&target->HTCTxLock);
  162. for (i = 0; i < ENDPOINT_MAX; i++) {
  163. endpoint = &target->endpoint[i];
  164. qdf_spinlock_destroy(&endpoint->lookup_queue_lock);
  165. }
  166. /* free our instance */
  167. qdf_mem_free(target);
  168. }
  169. #ifdef FEATURE_RUNTIME_PM
  170. /**
  171. * htc_runtime_pm_init(): runtime pm related intialization
  172. *
  173. * need to initialize a work item.
  174. */
  175. static void htc_runtime_pm_init(HTC_TARGET *target)
  176. {
  177. qdf_create_work(0, &target->queue_kicker, htc_kick_queues, target);
  178. }
  179. /**
  180. * htc_runtime_suspend() - runtime suspend HTC
  181. *
  182. * @htc_ctx: HTC context pointer
  183. *
  184. * This is a dummy function for symmetry.
  185. *
  186. * Return: 0 for success
  187. */
  188. int htc_runtime_suspend(HTC_HANDLE htc_ctx)
  189. {
  190. return 0;
  191. }
  192. /**
  193. * htc_runtime_resume(): resume htc
  194. *
  195. * The htc message queue needs to be kicked off after
  196. * a runtime resume. Otherwise messages would get stuck.
  197. *
  198. * @htc_ctx: HTC context pointer
  199. *
  200. * Return: 0 for success;
  201. */
  202. int htc_runtime_resume(HTC_HANDLE htc_ctx)
  203. {
  204. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(htc_ctx);
  205. if (!target)
  206. return 0;
  207. qdf_sched_work(0, &target->queue_kicker);
  208. return 0;
  209. }
  210. #else
  211. static inline void htc_runtime_pm_init(HTC_TARGET *target) { }
  212. #endif
  213. /* registered target arrival callback from the HIF layer */
  214. HTC_HANDLE htc_create(void *ol_sc, struct htc_init_info *pInfo,
  215. qdf_device_t osdev, uint32_t con_mode)
  216. {
  217. struct hif_msg_callbacks htcCallbacks;
  218. HTC_ENDPOINT *pEndpoint = NULL;
  219. HTC_TARGET *target = NULL;
  220. int i;
  221. if (!ol_sc) {
  222. HTC_ERROR("%s: ol_sc = NULL", __func__);
  223. return NULL;
  224. }
  225. HTC_TRACE("+htc_create .. HIF :%pK", ol_sc);
  226. A_REGISTER_MODULE_DEBUG_INFO(htc);
  227. target = (HTC_TARGET *) qdf_mem_malloc(sizeof(HTC_TARGET));
  228. if (!target)
  229. return NULL;
  230. htc_runtime_pm_init(target);
  231. htc_credit_history_init();
  232. qdf_spinlock_create(&target->HTCLock);
  233. qdf_spinlock_create(&target->HTCRxLock);
  234. qdf_spinlock_create(&target->HTCTxLock);
  235. for (i = 0; i < ENDPOINT_MAX; i++) {
  236. pEndpoint = &target->endpoint[i];
  237. qdf_spinlock_create(&pEndpoint->lookup_queue_lock);
  238. }
  239. target->is_nodrop_pkt = false;
  240. target->htc_hdr_length_check = false;
  241. target->wmi_ep_count = 1;
  242. do {
  243. qdf_mem_copy(&target->HTCInitInfo, pInfo,
  244. sizeof(struct htc_init_info));
  245. target->host_handle = pInfo->pContext;
  246. target->osdev = osdev;
  247. target->con_mode = con_mode;
  248. reset_endpoint_states(target);
  249. INIT_HTC_PACKET_QUEUE(&target->ControlBufferTXFreeList);
  250. for (i = 0; i < HTC_PACKET_CONTAINER_ALLOCATION; i++) {
  251. HTC_PACKET *pPacket = (HTC_PACKET *)
  252. qdf_mem_malloc(sizeof(HTC_PACKET));
  253. if (pPacket)
  254. free_htc_packet_container(target, pPacket);
  255. }
  256. #ifdef TODO_FIXME
  257. for (i = 0; i < NUM_CONTROL_TX_BUFFERS; i++) {
  258. pPacket = build_htc_tx_ctrl_packet();
  259. if (!pPacket)
  260. break;
  261. htc_free_control_tx_packet(target, pPacket);
  262. }
  263. #endif
  264. /* setup HIF layer callbacks */
  265. qdf_mem_zero(&htcCallbacks, sizeof(struct hif_msg_callbacks));
  266. htcCallbacks.Context = target;
  267. htcCallbacks.rxCompletionHandler = htc_rx_completion_handler;
  268. htcCallbacks.txCompletionHandler = htc_tx_completion_handler;
  269. htcCallbacks.txResourceAvailHandler =
  270. htc_tx_resource_avail_handler;
  271. htcCallbacks.fwEventHandler = htc_fw_event_handler;
  272. target->hif_dev = ol_sc;
  273. /* Get HIF default pipe for HTC message exchange */
  274. pEndpoint = &target->endpoint[ENDPOINT_0];
  275. hif_post_init(target->hif_dev, target, &htcCallbacks);
  276. hif_get_default_pipe(target->hif_dev, &pEndpoint->UL_PipeID,
  277. &pEndpoint->DL_PipeID);
  278. hif_set_initial_wakeup_cb(target->hif_dev,
  279. pInfo->target_initial_wakeup_cb,
  280. pInfo->target_psoc);
  281. } while (false);
  282. htc_recv_init(target);
  283. HTC_TRACE("-htc_create: (0x%pK)", target);
  284. return (HTC_HANDLE) target;
  285. }
  286. void htc_destroy(HTC_HANDLE HTCHandle)
  287. {
  288. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  289. AR_DEBUG_PRINTF(ATH_DEBUG_TRC,
  290. ("+htc_destroy .. Destroying :0x%pK\n", target));
  291. hif_stop(htc_get_hif_device(HTCHandle));
  292. if (target)
  293. htc_cleanup(target);
  294. AR_DEBUG_PRINTF(ATH_DEBUG_TRC, ("-htc_destroy\n"));
  295. }
  296. /* get the low level HIF device for the caller , the caller may wish to do low
  297. * level HIF requests
  298. */
  299. void *htc_get_hif_device(HTC_HANDLE HTCHandle)
  300. {
  301. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  302. return target->hif_dev;
  303. }
  304. static void htc_control_tx_complete(void *Context, HTC_PACKET *pPacket)
  305. {
  306. HTC_TARGET *target = (HTC_TARGET *) Context;
  307. AR_DEBUG_PRINTF(ATH_DEBUG_TRC,
  308. ("+-htc_control_tx_complete 0x%pK (l:%d)\n", pPacket,
  309. pPacket->ActualLength));
  310. htc_free_control_tx_packet(target, pPacket);
  311. }
  312. /* TODO, this is just a temporary max packet size */
  313. #define MAX_MESSAGE_SIZE 1536
  314. /**
  315. * htc_setup_epping_credit_allocation() - allocate credits/HTC buffers to WMI
  316. * @scn: pointer to hif_opaque_softc
  317. * @pEntry: pointer to tx credit allocation entry
  318. * @credits: number of credits
  319. *
  320. * Return: None
  321. */
  322. static void
  323. htc_setup_epping_credit_allocation(struct hif_opaque_softc *scn,
  324. struct htc_service_tx_credit_allocation *pEntry,
  325. int credits)
  326. {
  327. switch (hif_get_bus_type(scn)) {
  328. case QDF_BUS_TYPE_PCI:
  329. case QDF_BUS_TYPE_USB:
  330. pEntry++;
  331. pEntry->service_id = WMI_DATA_BE_SVC;
  332. pEntry->CreditAllocation = (credits >> 1);
  333. pEntry++;
  334. pEntry->service_id = WMI_DATA_BK_SVC;
  335. pEntry->CreditAllocation = (credits >> 1);
  336. break;
  337. case QDF_BUS_TYPE_SDIO:
  338. pEntry++;
  339. pEntry->service_id = WMI_DATA_BE_SVC;
  340. pEntry->CreditAllocation = credits;
  341. break;
  342. default:
  343. break;
  344. }
  345. }
  346. /**
  347. * htc_setup_target_buffer_assignments() - setup target buffer assignments
  348. * @target: HTC Target Pointer
  349. *
  350. * Return: A_STATUS
  351. */
  352. static
  353. A_STATUS htc_setup_target_buffer_assignments(HTC_TARGET *target)
  354. {
  355. struct htc_service_tx_credit_allocation *pEntry;
  356. A_STATUS status;
  357. int credits;
  358. int creditsPerMaxMsg;
  359. creditsPerMaxMsg = MAX_MESSAGE_SIZE / target->TargetCreditSize;
  360. if (MAX_MESSAGE_SIZE % target->TargetCreditSize)
  361. creditsPerMaxMsg++;
  362. /* TODO, this should be configured by the caller! */
  363. credits = target->TotalTransmitCredits;
  364. pEntry = &target->ServiceTxAllocTable[0];
  365. status = A_OK;
  366. /*
  367. * Allocate all credists/HTC buffers to WMI.
  368. * no buffers are used/required for data. data always
  369. * remains on host.
  370. */
  371. if (HTC_IS_EPPING_ENABLED(target->con_mode)) {
  372. pEntry++;
  373. pEntry->service_id = WMI_CONTROL_SVC;
  374. pEntry->CreditAllocation = credits;
  375. /* endpoint ping is a testing tool directly on top of HTC in
  376. * both target and host sides.
  377. * In target side, the endppint ping fw has no wlan stack and
  378. * FW mboxping app directly sits on HTC and it simply drops
  379. * or loops back TX packets. For rx perf, FW mboxping app
  380. * generates packets and passes packets to HTC to send to host.
  381. * There is no WMI message exchanges between host and target
  382. * in endpoint ping case.
  383. * In host side, the endpoint ping driver is a Ethernet driver
  384. * and it directly sits on HTC. Only HIF, HTC, QDF, ADF are
  385. * used by the endpoint ping driver. There is no wifi stack
  386. * at all in host side also. For tx perf use case,
  387. * the user space mboxping app sends the raw packets to endpoint
  388. * ping driver and it directly forwards to HTC for transmission
  389. * to stress the bus. For the rx perf, HTC passes the received
  390. * packets to endpoint ping driver and it is passed to the user
  391. * space through the Ethernet interface.
  392. * For credit allocation, in SDIO bus case, only BE service is
  393. * used for tx/rx perf testing so that all credits are given
  394. * to BE service. In PCIe and USB bus case, endpoint ping uses
  395. * both BE and BK services to stress the bus so that the total
  396. * credits are equally distributed to BE and BK services.
  397. */
  398. htc_setup_epping_credit_allocation(target->hif_dev,
  399. pEntry, credits);
  400. } else {
  401. int i;
  402. uint32_t max_wmi_svc = (sizeof(svc_id) / sizeof(uint32_t));
  403. if ((target->wmi_ep_count == 0) ||
  404. (target->wmi_ep_count > max_wmi_svc))
  405. return A_ERROR;
  406. /*
  407. * Divide credit among number of endpoints for WMI
  408. */
  409. credits = credits / target->wmi_ep_count;
  410. for (i = 0; i < target->wmi_ep_count; i++) {
  411. status = A_OK;
  412. pEntry++;
  413. pEntry->service_id = svc_id[i];
  414. pEntry->CreditAllocation = credits;
  415. }
  416. }
  417. if (A_SUCCESS(status)) {
  418. int i;
  419. for (i = 0; i < HTC_MAX_SERVICE_ALLOC_ENTRIES; i++) {
  420. if (target->ServiceTxAllocTable[i].service_id != 0) {
  421. AR_DEBUG_PRINTF(ATH_DEBUG_INIT,
  422. ("SVS Index : %d TX : 0x%2.2X : alloc:%d",
  423. i,
  424. target->ServiceTxAllocTable[i].
  425. service_id,
  426. target->ServiceTxAllocTable[i].
  427. CreditAllocation));
  428. }
  429. }
  430. }
  431. return status;
  432. }
  433. uint8_t htc_get_credit_allocation(HTC_TARGET *target, uint16_t service_id)
  434. {
  435. uint8_t allocation = 0;
  436. int i;
  437. for (i = 0; i < HTC_MAX_SERVICE_ALLOC_ENTRIES; i++) {
  438. if (target->ServiceTxAllocTable[i].service_id == service_id) {
  439. allocation =
  440. target->ServiceTxAllocTable[i].CreditAllocation;
  441. }
  442. }
  443. if (0 == allocation) {
  444. AR_DEBUG_PRINTF(ATH_DEBUG_RSVD1,
  445. ("HTC Service TX : 0x%2.2X : allocation is zero!\n",
  446. service_id));
  447. }
  448. return allocation;
  449. }
  450. QDF_STATUS htc_wait_target(HTC_HANDLE HTCHandle)
  451. {
  452. QDF_STATUS status = QDF_STATUS_SUCCESS;
  453. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  454. HTC_READY_EX_MSG *pReadyMsg;
  455. struct htc_service_connect_req connect;
  456. struct htc_service_connect_resp resp;
  457. HTC_READY_MSG *rdy_msg;
  458. uint16_t htc_rdy_msg_id;
  459. uint8_t i = 0;
  460. HTC_PACKET *rx_bundle_packet, *temp_bundle_packet;
  461. AR_DEBUG_PRINTF(ATH_DEBUG_TRC,
  462. ("htc_wait_target - Enter (target:0x%pK)\n", HTCHandle));
  463. AR_DEBUG_PRINTF(ATH_DEBUG_RSVD1, ("+HWT\n"));
  464. do {
  465. status = hif_start(target->hif_dev);
  466. if (QDF_IS_STATUS_ERROR(status)) {
  467. AR_DEBUG_PRINTF(ATH_DEBUG_ERROR,
  468. ("hif_start failed\n"));
  469. break;
  470. }
  471. status = htc_wait_recv_ctrl_message(target);
  472. if (QDF_IS_STATUS_ERROR(status))
  473. break;
  474. if (target->CtrlResponseLength < (sizeof(HTC_READY_EX_MSG))) {
  475. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  476. ("Invalid HTC Ready Msg Len:%d!\n",
  477. target->CtrlResponseLength));
  478. status = QDF_STATUS_E_BADMSG;
  479. break;
  480. }
  481. pReadyMsg = (HTC_READY_EX_MSG *) target->CtrlResponseBuffer;
  482. rdy_msg = &pReadyMsg->Version2_0_Info;
  483. htc_rdy_msg_id =
  484. HTC_GET_FIELD(rdy_msg, HTC_READY_MSG, MESSAGEID);
  485. if (htc_rdy_msg_id != HTC_MSG_READY_ID) {
  486. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  487. ("Invalid HTC Ready Msg : 0x%X!\n",
  488. htc_rdy_msg_id));
  489. status = QDF_STATUS_E_BADMSG;
  490. break;
  491. }
  492. target->TotalTransmitCredits = HTC_GET_FIELD(rdy_msg,
  493. HTC_READY_MSG, CREDITCOUNT);
  494. if (target->HTCInitInfo.cfg_wmi_credit_cnt &&
  495. (target->HTCInitInfo.cfg_wmi_credit_cnt <
  496. target->TotalTransmitCredits))
  497. /*
  498. * If INI configured value is less than FW advertised,
  499. * then use INI configured value, otherwise use FW
  500. * advertised.
  501. */
  502. target->TotalTransmitCredits =
  503. target->HTCInitInfo.cfg_wmi_credit_cnt;
  504. target->TargetCreditSize =
  505. (int)HTC_GET_FIELD(rdy_msg, HTC_READY_MSG, CREDITSIZE);
  506. target->MaxMsgsPerHTCBundle =
  507. (uint8_t) pReadyMsg->MaxMsgsPerHTCBundle;
  508. UPDATE_ALT_CREDIT(target, pReadyMsg->AltDataCreditSize);
  509. /* for old fw this value is set to 0. But the minimum value
  510. * should be 1, i.e., no bundling
  511. */
  512. if (target->MaxMsgsPerHTCBundle < 1)
  513. target->MaxMsgsPerHTCBundle = 1;
  514. AR_DEBUG_PRINTF(ATH_DEBUG_INIT,
  515. ("Target Ready! TX resource : %d size:%d, MaxMsgsPerHTCBundle = %d",
  516. target->TotalTransmitCredits,
  517. target->TargetCreditSize,
  518. target->MaxMsgsPerHTCBundle));
  519. if ((0 == target->TotalTransmitCredits)
  520. || (0 == target->TargetCreditSize)) {
  521. status = QDF_STATUS_E_ABORTED;
  522. break;
  523. }
  524. /* Allocate expected number of RX bundle buffer allocation */
  525. if (HTC_RX_BUNDLE_ENABLED(target)) {
  526. temp_bundle_packet = NULL;
  527. for (i = 0; i < MAX_HTC_RX_BUNDLE; i++) {
  528. rx_bundle_packet =
  529. allocate_htc_bundle_packet(target);
  530. if (rx_bundle_packet)
  531. rx_bundle_packet->ListLink.pNext =
  532. (DL_LIST *)temp_bundle_packet;
  533. else
  534. break;
  535. temp_bundle_packet = rx_bundle_packet;
  536. }
  537. LOCK_HTC_TX(target);
  538. target->pBundleFreeList = temp_bundle_packet;
  539. UNLOCK_HTC_TX(target);
  540. }
  541. /* done processing */
  542. target->CtrlResponseProcessing = false;
  543. htc_setup_target_buffer_assignments(target);
  544. /* setup our pseudo HTC control endpoint connection */
  545. qdf_mem_zero(&connect, sizeof(connect));
  546. qdf_mem_zero(&resp, sizeof(resp));
  547. connect.EpCallbacks.pContext = target;
  548. connect.EpCallbacks.EpTxComplete = htc_control_tx_complete;
  549. connect.EpCallbacks.EpRecv = htc_control_rx_complete;
  550. connect.MaxSendQueueDepth = NUM_CONTROL_TX_BUFFERS;
  551. connect.service_id = HTC_CTRL_RSVD_SVC;
  552. /* connect fake service */
  553. status = htc_connect_service((HTC_HANDLE) target,
  554. &connect, &resp);
  555. } while (false);
  556. AR_DEBUG_PRINTF(ATH_DEBUG_TRC, ("htc_wait_target - Exit (%d)\n",
  557. status));
  558. AR_DEBUG_PRINTF(ATH_DEBUG_RSVD1, ("-HWT\n"));
  559. return status;
  560. }
  561. /* start HTC, this is called after all services are connected */
  562. static A_STATUS htc_config_target_hif_pipe(HTC_TARGET *target)
  563. {
  564. return A_OK;
  565. }
  566. static void reset_endpoint_states(HTC_TARGET *target)
  567. {
  568. HTC_ENDPOINT *pEndpoint;
  569. int i;
  570. for (i = ENDPOINT_0; i < ENDPOINT_MAX; i++) {
  571. pEndpoint = &target->endpoint[i];
  572. pEndpoint->service_id = 0;
  573. pEndpoint->MaxMsgLength = 0;
  574. pEndpoint->MaxTxQueueDepth = 0;
  575. pEndpoint->Id = i;
  576. INIT_HTC_PACKET_QUEUE(&pEndpoint->TxQueue);
  577. INIT_HTC_PACKET_QUEUE(&pEndpoint->TxLookupQueue);
  578. INIT_HTC_PACKET_QUEUE(&pEndpoint->RxBufferHoldQueue);
  579. pEndpoint->target = target;
  580. pEndpoint->TxCreditFlowEnabled = (bool)htc_credit_flow;
  581. qdf_atomic_init(&pEndpoint->TxProcessCount);
  582. }
  583. }
  584. /**
  585. * htc_start() - Main HTC function to trigger HTC start
  586. * @HTCHandle: pointer to HTC handle
  587. *
  588. * Return: QDF_STATUS_SUCCESS for success or an appropriate QDF_STATUS error
  589. */
  590. QDF_STATUS htc_start(HTC_HANDLE HTCHandle)
  591. {
  592. qdf_nbuf_t netbuf;
  593. QDF_STATUS status = QDF_STATUS_SUCCESS;
  594. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  595. HTC_SETUP_COMPLETE_EX_MSG *pSetupComp;
  596. HTC_PACKET *pSendPacket;
  597. AR_DEBUG_PRINTF(ATH_DEBUG_TRC, ("htc_start Enter\n"));
  598. do {
  599. htc_config_target_hif_pipe(target);
  600. /* allocate a buffer to send */
  601. pSendPacket = htc_alloc_control_tx_packet(target);
  602. if (!pSendPacket) {
  603. AR_DEBUG_ASSERT(false);
  604. qdf_print("%s: allocControlTxPacket failed",
  605. __func__);
  606. status = QDF_STATUS_E_NOMEM;
  607. break;
  608. }
  609. netbuf =
  610. (qdf_nbuf_t) GET_HTC_PACKET_NET_BUF_CONTEXT(pSendPacket);
  611. /* assemble setup complete message */
  612. qdf_nbuf_put_tail(netbuf, sizeof(HTC_SETUP_COMPLETE_EX_MSG));
  613. pSetupComp =
  614. (HTC_SETUP_COMPLETE_EX_MSG *) qdf_nbuf_data(netbuf);
  615. qdf_mem_zero(pSetupComp, sizeof(HTC_SETUP_COMPLETE_EX_MSG));
  616. HTC_SET_FIELD(pSetupComp, HTC_SETUP_COMPLETE_EX_MSG,
  617. MESSAGEID, HTC_MSG_SETUP_COMPLETE_EX_ID);
  618. if (!htc_credit_flow) {
  619. AR_DEBUG_PRINTF(ATH_DEBUG_TRC,
  620. ("HTC will not use TX credit flow control"));
  621. pSetupComp->SetupFlags |=
  622. HTC_SETUP_COMPLETE_FLAGS_DISABLE_TX_CREDIT_FLOW;
  623. } else {
  624. AR_DEBUG_PRINTF(ATH_DEBUG_TRC,
  625. ("HTC using TX credit flow control"));
  626. }
  627. if ((hif_get_bus_type(target->hif_dev) == QDF_BUS_TYPE_SDIO) ||
  628. (hif_get_bus_type(target->hif_dev) ==
  629. QDF_BUS_TYPE_USB)) {
  630. if (HTC_RX_BUNDLE_ENABLED(target))
  631. pSetupComp->SetupFlags |=
  632. HTC_SETUP_COMPLETE_FLAGS_ENABLE_BUNDLE_RECV;
  633. hif_set_bundle_mode(target->hif_dev, true,
  634. HTC_MAX_MSG_PER_BUNDLE_RX);
  635. pSetupComp->MaxMsgsPerBundledRecv = HTC_MAX_MSG_PER_BUNDLE_RX;
  636. }
  637. SET_HTC_PACKET_INFO_TX(pSendPacket,
  638. NULL,
  639. (uint8_t *) pSetupComp,
  640. sizeof(HTC_SETUP_COMPLETE_EX_MSG),
  641. ENDPOINT_0, HTC_SERVICE_TX_PACKET_TAG);
  642. status = htc_send_pkt((HTC_HANDLE) target, pSendPacket);
  643. if (QDF_IS_STATUS_ERROR(status))
  644. break;
  645. } while (false);
  646. AR_DEBUG_PRINTF(ATH_DEBUG_TRC, ("htc_start Exit\n"));
  647. return status;
  648. }
  649. /*flush all queued buffers for surpriseremove case*/
  650. void htc_flush_surprise_remove(HTC_HANDLE HTCHandle)
  651. {
  652. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  653. int i;
  654. HTC_ENDPOINT *pEndpoint;
  655. #ifdef RX_SG_SUPPORT
  656. qdf_nbuf_t netbuf;
  657. qdf_nbuf_queue_t *rx_sg_queue = &target->RxSgQueue;
  658. #endif
  659. AR_DEBUG_PRINTF(ATH_DEBUG_TRC, ("+htc_flush_surprise_remove\n"));
  660. /* cleanup endpoints */
  661. for (i = 0; i < ENDPOINT_MAX; i++) {
  662. pEndpoint = &target->endpoint[i];
  663. htc_flush_rx_hold_queue(target, pEndpoint);
  664. htc_flush_endpoint_tx(target, pEndpoint, HTC_TX_PACKET_TAG_ALL);
  665. }
  666. hif_flush_surprise_remove(target->hif_dev);
  667. #ifdef RX_SG_SUPPORT
  668. LOCK_HTC_RX(target);
  669. while ((netbuf = qdf_nbuf_queue_remove(rx_sg_queue)) != NULL)
  670. qdf_nbuf_free(netbuf);
  671. RESET_RX_SG_CONFIG(target);
  672. UNLOCK_HTC_RX(target);
  673. #endif
  674. reset_endpoint_states(target);
  675. AR_DEBUG_PRINTF(ATH_DEBUG_TRC, ("-htc_flush_surprise_remove\n"));
  676. }
  677. /* stop HTC communications, i.e. stop interrupt reception, and flush all queued
  678. * buffers
  679. */
  680. void htc_stop(HTC_HANDLE HTCHandle)
  681. {
  682. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  683. int i;
  684. HTC_ENDPOINT *pEndpoint;
  685. #ifdef RX_SG_SUPPORT
  686. qdf_nbuf_t netbuf;
  687. qdf_nbuf_queue_t *rx_sg_queue = &target->RxSgQueue;
  688. #endif
  689. AR_DEBUG_PRINTF(ATH_DEBUG_TRC, ("+htc_stop\n"));
  690. HTC_INFO("%s: endpoints cleanup\n", __func__);
  691. /* cleanup endpoints */
  692. for (i = 0; i < ENDPOINT_MAX; i++) {
  693. pEndpoint = &target->endpoint[i];
  694. htc_flush_rx_hold_queue(target, pEndpoint);
  695. htc_flush_endpoint_tx(target, pEndpoint, HTC_TX_PACKET_TAG_ALL);
  696. if (pEndpoint->ul_is_polled) {
  697. qdf_timer_stop(&pEndpoint->ul_poll_timer);
  698. qdf_timer_free(&pEndpoint->ul_poll_timer);
  699. }
  700. }
  701. /* Note: htc_flush_endpoint_tx for all endpoints should be called before
  702. * hif_stop - otherwise htc_tx_completion_handler called from
  703. * hif_send_buffer_cleanup_on_pipe for residual tx frames in HIF layer,
  704. * might queue the packet again to HIF Layer - which could cause tx
  705. * buffer leak
  706. */
  707. HTC_INFO("%s: stopping hif layer\n", __func__);
  708. hif_stop(target->hif_dev);
  709. #ifdef RX_SG_SUPPORT
  710. LOCK_HTC_RX(target);
  711. while ((netbuf = qdf_nbuf_queue_remove(rx_sg_queue)) != NULL)
  712. qdf_nbuf_free(netbuf);
  713. RESET_RX_SG_CONFIG(target);
  714. UNLOCK_HTC_RX(target);
  715. #endif
  716. /**
  717. * In SSR case, HTC tx completion callback for wmi will be blocked
  718. * by TARGET_STATUS_RESET and HTC packets will be left unfreed on
  719. * lookup queue.
  720. */
  721. HTC_INFO("%s: flush endpoints Tx lookup queue\n", __func__);
  722. for (i = 0; i < ENDPOINT_MAX; i++) {
  723. pEndpoint = &target->endpoint[i];
  724. if (pEndpoint->service_id == WMI_CONTROL_SVC)
  725. htc_flush_endpoint_txlookupQ(target, i, false);
  726. }
  727. HTC_INFO("%s: resetting endpoints state\n", __func__);
  728. reset_endpoint_states(target);
  729. AR_DEBUG_PRINTF(ATH_DEBUG_TRC, ("-htc_stop\n"));
  730. }
  731. void htc_dump_credit_states(HTC_HANDLE HTCHandle)
  732. {
  733. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  734. HTC_ENDPOINT *pEndpoint;
  735. int i;
  736. for (i = 0; i < ENDPOINT_MAX; i++) {
  737. pEndpoint = &target->endpoint[i];
  738. if (0 == pEndpoint->service_id)
  739. continue;
  740. AR_DEBUG_PRINTF(ATH_DEBUG_ANY,
  741. ("--- EP : %d service_id: 0x%X --------------\n",
  742. pEndpoint->Id, pEndpoint->service_id));
  743. AR_DEBUG_PRINTF(ATH_DEBUG_ANY,
  744. (" TxCredits : %d\n",
  745. pEndpoint->TxCredits));
  746. AR_DEBUG_PRINTF(ATH_DEBUG_ANY,
  747. (" TxCreditSize : %d\n",
  748. pEndpoint->TxCreditSize));
  749. AR_DEBUG_PRINTF(ATH_DEBUG_ANY,
  750. (" TxCreditsPerMaxMsg : %d\n",
  751. pEndpoint->TxCreditsPerMaxMsg));
  752. AR_DEBUG_PRINTF(ATH_DEBUG_ANY,
  753. (" TxQueueDepth : %d\n",
  754. HTC_PACKET_QUEUE_DEPTH(&pEndpoint->TxQueue)));
  755. AR_DEBUG_PRINTF(ATH_DEBUG_ANY,
  756. ("----------------------------------------\n"));
  757. }
  758. }
  759. bool htc_get_endpoint_statistics(HTC_HANDLE HTCHandle,
  760. HTC_ENDPOINT_ID Endpoint,
  761. enum htc_endpoint_stat_action Action,
  762. struct htc_endpoint_stats *pStats)
  763. {
  764. #ifdef HTC_EP_STAT_PROFILING
  765. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  766. bool clearStats = false;
  767. bool sample = false;
  768. switch (Action) {
  769. case HTC_EP_STAT_SAMPLE:
  770. sample = true;
  771. break;
  772. case HTC_EP_STAT_SAMPLE_AND_CLEAR:
  773. sample = true;
  774. clearStats = true;
  775. break;
  776. case HTC_EP_STAT_CLEAR:
  777. clearStats = true;
  778. break;
  779. default:
  780. break;
  781. }
  782. A_ASSERT(Endpoint < ENDPOINT_MAX);
  783. /* lock out TX and RX while we sample and/or clear */
  784. LOCK_HTC_TX(target);
  785. LOCK_HTC_RX(target);
  786. if (sample) {
  787. A_ASSERT(pStats);
  788. /* return the stats to the caller */
  789. qdf_mem_copy(pStats, &target->endpoint[Endpoint].endpoint_stats,
  790. sizeof(struct htc_endpoint_stats));
  791. }
  792. if (clearStats) {
  793. /* reset stats */
  794. qdf_mem_zero(&target->endpoint[Endpoint].endpoint_stats,
  795. sizeof(struct htc_endpoint_stats));
  796. }
  797. UNLOCK_HTC_RX(target);
  798. UNLOCK_HTC_TX(target);
  799. return true;
  800. #else
  801. return false;
  802. #endif
  803. }
  804. void *htc_get_targetdef(HTC_HANDLE htc_handle)
  805. {
  806. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(htc_handle);
  807. return hif_get_targetdef(target->hif_dev);
  808. }
  809. #ifdef IPA_OFFLOAD
  810. /**
  811. * htc_ipa_get_ce_resource() - get uc resource on lower layer
  812. * @htc_handle: htc context
  813. * @ce_sr_base_paddr: copyengine source ring base physical address
  814. * @ce_sr_ring_size: copyengine source ring size
  815. * @ce_reg_paddr: copyengine register physical address
  816. *
  817. * Return: None
  818. */
  819. void htc_ipa_get_ce_resource(HTC_HANDLE htc_handle,
  820. qdf_shared_mem_t **ce_sr,
  821. uint32_t *ce_sr_ring_size,
  822. qdf_dma_addr_t *ce_reg_paddr)
  823. {
  824. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(htc_handle);
  825. if (target->hif_dev)
  826. hif_ipa_get_ce_resource(target->hif_dev,
  827. ce_sr, ce_sr_ring_size, ce_reg_paddr);
  828. }
  829. #endif /* IPA_OFFLOAD */
  830. #if defined(DEBUG_HL_LOGGING) && defined(CONFIG_HL_SUPPORT)
  831. void htc_dump_bundle_stats(HTC_HANDLE HTCHandle)
  832. {
  833. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  834. int total, i;
  835. total = 0;
  836. for (i = 0; i < HTC_MAX_MSG_PER_BUNDLE_RX; i++)
  837. total += target->rx_bundle_stats[i];
  838. if (total) {
  839. AR_DEBUG_PRINTF(ATH_DEBUG_ANY, ("RX Bundle stats:\n"));
  840. AR_DEBUG_PRINTF(ATH_DEBUG_ANY, ("Total RX packets: %d\n",
  841. total));
  842. AR_DEBUG_PRINTF(ATH_DEBUG_ANY, (
  843. "Number of bundle: Number of packets\n"));
  844. for (i = 0; i < HTC_MAX_MSG_PER_BUNDLE_RX; i++)
  845. AR_DEBUG_PRINTF(ATH_DEBUG_ANY,
  846. ("%10d:%10d(%2d%s)\n", (i+1),
  847. target->rx_bundle_stats[i],
  848. ((target->rx_bundle_stats[i]*100)/
  849. total), "%"));
  850. }
  851. total = 0;
  852. for (i = 0; i < HTC_MAX_MSG_PER_BUNDLE_TX; i++)
  853. total += target->tx_bundle_stats[i];
  854. if (total) {
  855. AR_DEBUG_PRINTF(ATH_DEBUG_ANY, ("TX Bundle stats:\n"));
  856. AR_DEBUG_PRINTF(ATH_DEBUG_ANY, ("Total TX packets: %d\n",
  857. total));
  858. AR_DEBUG_PRINTF(ATH_DEBUG_ANY,
  859. ("Number of bundle: Number of packets\n"));
  860. for (i = 0; i < HTC_MAX_MSG_PER_BUNDLE_TX; i++)
  861. AR_DEBUG_PRINTF(ATH_DEBUG_ANY,
  862. ("%10d:%10d(%2d%s)\n", (i+1),
  863. target->tx_bundle_stats[i],
  864. ((target->tx_bundle_stats[i]*100)/
  865. total), "%"));
  866. }
  867. }
  868. void htc_clear_bundle_stats(HTC_HANDLE HTCHandle)
  869. {
  870. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle);
  871. qdf_mem_zero(&target->rx_bundle_stats, sizeof(target->rx_bundle_stats));
  872. qdf_mem_zero(&target->tx_bundle_stats, sizeof(target->tx_bundle_stats));
  873. }
  874. #endif
  875. /**
  876. * htc_vote_link_down - API to vote for link down
  877. * @htc_handle: HTC handle
  878. *
  879. * API for upper layers to call HIF to vote for link down
  880. *
  881. * Return: void
  882. */
  883. void htc_vote_link_down(HTC_HANDLE htc_handle)
  884. {
  885. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(htc_handle);
  886. if (!target->hif_dev)
  887. return;
  888. hif_vote_link_down(target->hif_dev);
  889. }
  890. /**
  891. * htc_vote_link_up - API to vote for link up
  892. * @htc_handle: HTC Handle
  893. *
  894. * API for upper layers to call HIF to vote for link up
  895. *
  896. * Return: void
  897. */
  898. void htc_vote_link_up(HTC_HANDLE htc_handle)
  899. {
  900. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(htc_handle);
  901. if (!target->hif_dev)
  902. return;
  903. hif_vote_link_up(target->hif_dev);
  904. }
  905. /**
  906. * htc_can_suspend_link - API to query HIF for link status
  907. * @htc_handle: HTC Handle
  908. *
  909. * API for upper layers to call HIF to query if the link can suspend
  910. *
  911. * Return: void
  912. */
  913. bool htc_can_suspend_link(HTC_HANDLE htc_handle)
  914. {
  915. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(htc_handle);
  916. if (!target->hif_dev)
  917. return false;
  918. return hif_can_suspend_link(target->hif_dev);
  919. }
  920. #ifdef FEATURE_RUNTIME_PM
  921. int htc_pm_runtime_get(HTC_HANDLE htc_handle)
  922. {
  923. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(htc_handle);
  924. return hif_pm_runtime_get(target->hif_dev);
  925. }
  926. int htc_pm_runtime_put(HTC_HANDLE htc_handle)
  927. {
  928. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(htc_handle);
  929. return hif_pm_runtime_put(target->hif_dev);
  930. }
  931. #endif
  932. /**
  933. * htc_set_wmi_endpoint_count: Set number of WMI endpoint
  934. * @htc_handle: HTC handle
  935. * @wmi_ep_count: WMI enpoint count
  936. *
  937. * return: None
  938. */
  939. void htc_set_wmi_endpoint_count(HTC_HANDLE htc_handle, uint8_t wmi_ep_count)
  940. {
  941. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(htc_handle);
  942. target->wmi_ep_count = wmi_ep_count;
  943. }
  944. /**
  945. * htc_get_wmi_endpoint_count: Get number of WMI endpoint
  946. * @htc_handle: HTC handle
  947. *
  948. * return: WMI enpoint count
  949. */
  950. uint8_t htc_get_wmi_endpoint_count(HTC_HANDLE htc_handle)
  951. {
  952. HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(htc_handle);
  953. return target->wmi_ep_count;
  954. }