htc.c 23 KB

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