htc.c 29 KB

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