htc.c 26 KB

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