htc.c 29 KB

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