htc.c 29 KB

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