htc.c 29 KB

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