htc.c 29 KB

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