htc.c 28 KB

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