htc.c 28 KB

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