htc.c 24 KB

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