htc.c 29 KB

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