htt.c 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011
  1. /*
  2. * Copyright (c) 2011, 2014-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. /**
  19. * @file htt.c
  20. * @brief Provide functions to create+init and destroy a HTT instance.
  21. * @details
  22. * This file contains functions for creating a HTT instance; initializing
  23. * the HTT instance, e.g. by allocating a pool of HTT tx descriptors and
  24. * connecting the HTT service with HTC; and deleting a HTT instance.
  25. */
  26. #include <qdf_mem.h> /* qdf_mem_malloc */
  27. #include <qdf_types.h> /* qdf_device_t, qdf_print */
  28. #include <htt.h> /* htt_tx_msdu_desc_t */
  29. #include <ol_cfg.h>
  30. #include <ol_txrx_htt_api.h> /* ol_tx_dowload_done_ll, etc. */
  31. #include <ol_htt_api.h>
  32. #include <htt_internal.h>
  33. #include <ol_htt_tx_api.h>
  34. #include <cds_api.h>
  35. #include "hif.h"
  36. #include <cdp_txrx_handle.h>
  37. #define HTT_HTC_PKT_POOL_INIT_SIZE 100 /* enough for a large A-MPDU */
  38. QDF_STATUS(*htt_h2t_rx_ring_cfg_msg)(struct htt_pdev_t *pdev);
  39. QDF_STATUS(*htt_h2t_rx_ring_rfs_cfg_msg)(struct htt_pdev_t *pdev);
  40. #ifdef IPA_OFFLOAD
  41. static QDF_STATUS htt_ipa_config(htt_pdev_handle pdev, QDF_STATUS status)
  42. {
  43. if ((QDF_STATUS_SUCCESS == status) &&
  44. ol_cfg_ipa_uc_offload_enabled(pdev->ctrl_pdev))
  45. status = htt_h2t_ipa_uc_rsc_cfg_msg(pdev);
  46. return status;
  47. }
  48. #define HTT_IPA_CONFIG htt_ipa_config
  49. #else
  50. #define HTT_IPA_CONFIG(pdev, status) status /* no-op */
  51. #endif /* IPA_OFFLOAD */
  52. struct htt_htc_pkt *htt_htc_pkt_alloc(struct htt_pdev_t *pdev)
  53. {
  54. struct htt_htc_pkt_union *pkt = NULL;
  55. HTT_TX_MUTEX_ACQUIRE(&pdev->htt_tx_mutex);
  56. if (pdev->htt_htc_pkt_freelist) {
  57. pkt = pdev->htt_htc_pkt_freelist;
  58. pdev->htt_htc_pkt_freelist = pdev->htt_htc_pkt_freelist->u.next;
  59. }
  60. HTT_TX_MUTEX_RELEASE(&pdev->htt_tx_mutex);
  61. if (!pkt)
  62. pkt = qdf_mem_malloc(sizeof(*pkt));
  63. if (!pkt)
  64. return NULL;
  65. htc_packet_set_magic_cookie(&(pkt->u.pkt.htc_pkt), 0);
  66. return &pkt->u.pkt; /* not actually a dereference */
  67. }
  68. void htt_htc_pkt_free(struct htt_pdev_t *pdev, struct htt_htc_pkt *pkt)
  69. {
  70. struct htt_htc_pkt_union *u_pkt = (struct htt_htc_pkt_union *)pkt;
  71. if (!u_pkt) {
  72. qdf_print("HTC packet is NULL");
  73. return;
  74. }
  75. HTT_TX_MUTEX_ACQUIRE(&pdev->htt_tx_mutex);
  76. htc_packet_set_magic_cookie(&(u_pkt->u.pkt.htc_pkt), 0);
  77. u_pkt->u.next = pdev->htt_htc_pkt_freelist;
  78. pdev->htt_htc_pkt_freelist = u_pkt;
  79. HTT_TX_MUTEX_RELEASE(&pdev->htt_tx_mutex);
  80. }
  81. void htt_htc_pkt_pool_free(struct htt_pdev_t *pdev)
  82. {
  83. struct htt_htc_pkt_union *pkt, *next;
  84. HTT_TX_MUTEX_ACQUIRE(&pdev->htt_tx_mutex);
  85. pkt = pdev->htt_htc_pkt_freelist;
  86. pdev->htt_htc_pkt_freelist = NULL;
  87. HTT_TX_MUTEX_RELEASE(&pdev->htt_tx_mutex);
  88. while (pkt) {
  89. next = pkt->u.next;
  90. qdf_mem_free(pkt);
  91. pkt = next;
  92. }
  93. }
  94. #ifdef ATH_11AC_TXCOMPACT
  95. void
  96. htt_htc_misc_pkt_list_trim(struct htt_pdev_t *pdev, int level)
  97. {
  98. struct htt_htc_pkt_union *pkt, *next, *prev = NULL;
  99. int i = 0;
  100. qdf_nbuf_t netbuf;
  101. HTT_TX_MUTEX_ACQUIRE(&pdev->htt_tx_mutex);
  102. pkt = pdev->htt_htc_pkt_misclist;
  103. while (pkt) {
  104. next = pkt->u.next;
  105. /* trim the out grown list*/
  106. if (++i > level) {
  107. netbuf =
  108. (qdf_nbuf_t)(pkt->u.pkt.htc_pkt.pNetBufContext);
  109. qdf_nbuf_unmap(pdev->osdev, netbuf, QDF_DMA_TO_DEVICE);
  110. qdf_nbuf_free(netbuf);
  111. qdf_mem_free(pkt);
  112. pkt = NULL;
  113. if (prev)
  114. prev->u.next = NULL;
  115. }
  116. prev = pkt;
  117. pkt = next;
  118. }
  119. HTT_TX_MUTEX_RELEASE(&pdev->htt_tx_mutex);
  120. }
  121. void htt_htc_misc_pkt_list_add(struct htt_pdev_t *pdev, struct htt_htc_pkt *pkt)
  122. {
  123. struct htt_htc_pkt_union *u_pkt = (struct htt_htc_pkt_union *)pkt;
  124. int misclist_trim_level = htc_get_tx_queue_depth(pdev->htc_pdev,
  125. pkt->htc_pkt.Endpoint)
  126. + HTT_HTC_PKT_MISCLIST_SIZE;
  127. HTT_TX_MUTEX_ACQUIRE(&pdev->htt_tx_mutex);
  128. if (pdev->htt_htc_pkt_misclist) {
  129. u_pkt->u.next = pdev->htt_htc_pkt_misclist;
  130. pdev->htt_htc_pkt_misclist = u_pkt;
  131. } else {
  132. pdev->htt_htc_pkt_misclist = u_pkt;
  133. }
  134. HTT_TX_MUTEX_RELEASE(&pdev->htt_tx_mutex);
  135. /* only ce pipe size + tx_queue_depth could possibly be in use
  136. * free older packets in the msiclist
  137. */
  138. htt_htc_misc_pkt_list_trim(pdev, misclist_trim_level);
  139. }
  140. void htt_htc_misc_pkt_pool_free(struct htt_pdev_t *pdev)
  141. {
  142. struct htt_htc_pkt_union *pkt, *next;
  143. qdf_nbuf_t netbuf;
  144. HTT_TX_MUTEX_ACQUIRE(&pdev->htt_tx_mutex);
  145. pkt = pdev->htt_htc_pkt_misclist;
  146. pdev->htt_htc_pkt_misclist = NULL;
  147. HTT_TX_MUTEX_RELEASE(&pdev->htt_tx_mutex);
  148. while (pkt) {
  149. next = pkt->u.next;
  150. if (htc_packet_get_magic_cookie(&(pkt->u.pkt.htc_pkt)) !=
  151. HTC_PACKET_MAGIC_COOKIE) {
  152. QDF_ASSERT(0);
  153. pkt = next;
  154. continue;
  155. }
  156. netbuf = (qdf_nbuf_t) (pkt->u.pkt.htc_pkt.pNetBufContext);
  157. qdf_nbuf_unmap(pdev->osdev, netbuf, QDF_DMA_TO_DEVICE);
  158. qdf_nbuf_free(netbuf);
  159. qdf_mem_free(pkt);
  160. pkt = next;
  161. }
  162. }
  163. #endif
  164. /* AR6004 don't need HTT layer. */
  165. #ifdef AR6004_HW
  166. #define NO_HTT_NEEDED true
  167. #else
  168. #define NO_HTT_NEEDED false
  169. #endif
  170. #if defined(QCA_TX_HTT2_SUPPORT) && defined(CONFIG_HL_SUPPORT)
  171. /**
  172. * htt_htc_tx_htt2_service_start() - Start TX HTT2 service
  173. *
  174. * @pdev: pointer to htt device.
  175. * @connect_req: pointer to service connection request information
  176. * @connect_resp: pointer to service connection response information
  177. *
  178. *
  179. * Return: None
  180. */
  181. static void
  182. htt_htc_tx_htt2_service_start(struct htt_pdev_t *pdev,
  183. struct htc_service_connect_req *connect_req,
  184. struct htc_service_connect_resp *connect_resp)
  185. {
  186. QDF_STATUS status;
  187. qdf_mem_zero(connect_req, sizeof(struct htc_service_connect_req));
  188. qdf_mem_zero(connect_resp, sizeof(struct htc_service_connect_resp));
  189. /* The same as HTT service but no RX. */
  190. connect_req->EpCallbacks.pContext = pdev;
  191. connect_req->EpCallbacks.EpTxComplete = htt_h2t_send_complete;
  192. connect_req->EpCallbacks.EpSendFull = htt_h2t_full;
  193. connect_req->MaxSendQueueDepth = HTT_MAX_SEND_QUEUE_DEPTH;
  194. /* Should NOT support credit flow control. */
  195. connect_req->ConnectionFlags |=
  196. HTC_CONNECT_FLAGS_DISABLE_CREDIT_FLOW_CTRL;
  197. /* Enable HTC schedule mechanism for TX HTT2 service. */
  198. connect_req->ConnectionFlags |= HTC_CONNECT_FLAGS_ENABLE_HTC_SCHEDULE;
  199. connect_req->service_id = HTT_DATA2_MSG_SVC;
  200. status = htc_connect_service(pdev->htc_pdev, connect_req, connect_resp);
  201. if (status != QDF_STATUS_SUCCESS) {
  202. pdev->htc_tx_htt2_endpoint = ENDPOINT_UNUSED;
  203. pdev->htc_tx_htt2_max_size = 0;
  204. } else {
  205. pdev->htc_tx_htt2_endpoint = connect_resp->Endpoint;
  206. pdev->htc_tx_htt2_max_size = HTC_TX_HTT2_MAX_SIZE;
  207. }
  208. qdf_print("TX HTT %s, ep %d size %d\n",
  209. (status == QDF_STATUS_SUCCESS ? "ON" : "OFF"),
  210. pdev->htc_tx_htt2_endpoint,
  211. pdev->htc_tx_htt2_max_size);
  212. }
  213. #else
  214. static inline void
  215. htt_htc_tx_htt2_service_start(struct htt_pdev_t *pdev,
  216. struct htc_service_connect_req *connect_req,
  217. struct htc_service_connect_resp *connect_resp)
  218. {
  219. }
  220. #endif
  221. /**
  222. * htt_htc_credit_flow_disable() - disable flow control for
  223. * HTT data message service
  224. *
  225. * @pdev: pointer to htt device.
  226. * @connect_req: pointer to service connection request information
  227. *
  228. * HTC Credit mechanism is disabled based on
  229. * default_tx_comp_req as throughput will be lower
  230. * if we disable htc credit mechanism with default_tx_comp_req
  231. * set since txrx download packet will be limited by ota
  232. * completion.
  233. *
  234. * Return: None
  235. */
  236. static
  237. void htt_htc_credit_flow_disable(struct htt_pdev_t *pdev,
  238. struct htc_service_connect_req *connect_req)
  239. {
  240. if (pdev->osdev->bus_type == QDF_BUS_TYPE_SDIO) {
  241. /*
  242. * TODO:Conditional disabling will be removed once firmware
  243. * with reduced tx completion is pushed into release builds.
  244. */
  245. if (!pdev->cfg.default_tx_comp_req)
  246. connect_req->ConnectionFlags |=
  247. HTC_CONNECT_FLAGS_DISABLE_CREDIT_FLOW_CTRL;
  248. } else {
  249. connect_req->ConnectionFlags |=
  250. HTC_CONNECT_FLAGS_DISABLE_CREDIT_FLOW_CTRL;
  251. }
  252. }
  253. #if defined(DEBUG_HL_LOGGING) && defined(CONFIG_HL_SUPPORT)
  254. /**
  255. * htt_dump_bundle_stats() - dump wlan stats
  256. * @pdev: handle to the HTT instance
  257. *
  258. * Return: None
  259. */
  260. void htt_dump_bundle_stats(htt_pdev_handle pdev)
  261. {
  262. htc_dump_bundle_stats(pdev->htc_pdev);
  263. }
  264. /**
  265. * htt_clear_bundle_stats() - clear wlan stats
  266. * @pdev: handle to the HTT instance
  267. *
  268. * Return: None
  269. */
  270. void htt_clear_bundle_stats(htt_pdev_handle pdev)
  271. {
  272. htc_clear_bundle_stats(pdev->htc_pdev);
  273. }
  274. #endif
  275. #if defined(QCA_WIFI_3_0_ADRASTEA)
  276. /**
  277. * htt_htc_attach_all() - Connect to HTC service for HTT
  278. * @pdev: pdev ptr
  279. *
  280. * Return: 0 for success or error code.
  281. */
  282. #if defined(QCN7605_SUPPORT) && defined(IPA_OFFLOAD)
  283. /* In case of QCN7605 with IPA offload only 2 CE
  284. * are used for RFS
  285. */
  286. static int
  287. htt_htc_attach_all(struct htt_pdev_t *pdev)
  288. {
  289. if (htt_htc_attach(pdev, HTT_DATA_MSG_SVC))
  290. goto flush_endpoint;
  291. if (htt_htc_attach(pdev, HTT_DATA2_MSG_SVC))
  292. goto flush_endpoint;
  293. return 0;
  294. flush_endpoint:
  295. htc_flush_endpoint(pdev->htc_pdev, ENDPOINT_0, HTC_TX_PACKET_TAG_ALL);
  296. return -EIO;
  297. }
  298. #else
  299. static int
  300. htt_htc_attach_all(struct htt_pdev_t *pdev)
  301. {
  302. if (htt_htc_attach(pdev, HTT_DATA_MSG_SVC))
  303. goto flush_endpoint;
  304. if (htt_htc_attach(pdev, HTT_DATA2_MSG_SVC))
  305. goto flush_endpoint;
  306. if (htt_htc_attach(pdev, HTT_DATA3_MSG_SVC))
  307. goto flush_endpoint;
  308. return 0;
  309. flush_endpoint:
  310. htc_flush_endpoint(pdev->htc_pdev, ENDPOINT_0, HTC_TX_PACKET_TAG_ALL);
  311. return -EIO;
  312. }
  313. #endif
  314. #else
  315. /**
  316. * htt_htc_attach_all() - Connect to HTC service for HTT
  317. * @pdev: pdev ptr
  318. *
  319. * Return: 0 for success or error code.
  320. */
  321. static int
  322. htt_htc_attach_all(struct htt_pdev_t *pdev)
  323. {
  324. return htt_htc_attach(pdev, HTT_DATA_MSG_SVC);
  325. }
  326. #endif
  327. /**
  328. * htt_pdev_alloc() - allocate HTT pdev
  329. * @txrx_pdev: txrx pdev
  330. * @ctrl_pdev: cfg pdev
  331. * @htc_pdev: HTC pdev
  332. * @osdev: os device
  333. *
  334. * Return: HTT pdev handle
  335. */
  336. htt_pdev_handle
  337. htt_pdev_alloc(ol_txrx_pdev_handle txrx_pdev,
  338. struct cdp_cfg *ctrl_pdev,
  339. HTC_HANDLE htc_pdev, qdf_device_t osdev)
  340. {
  341. struct htt_pdev_t *pdev;
  342. struct hif_opaque_softc *osc = cds_get_context(QDF_MODULE_ID_HIF);
  343. if (!osc)
  344. goto fail1;
  345. pdev = qdf_mem_malloc(sizeof(*pdev));
  346. if (!pdev)
  347. goto fail1;
  348. pdev->osdev = osdev;
  349. pdev->ctrl_pdev = ctrl_pdev;
  350. pdev->txrx_pdev = txrx_pdev;
  351. pdev->htc_pdev = htc_pdev;
  352. pdev->htt_htc_pkt_freelist = NULL;
  353. #ifdef ATH_11AC_TXCOMPACT
  354. pdev->htt_htc_pkt_misclist = NULL;
  355. #endif
  356. /* for efficiency, store a local copy of the is_high_latency flag */
  357. pdev->cfg.is_high_latency = ol_cfg_is_high_latency(pdev->ctrl_pdev);
  358. /*
  359. * Credit reporting through HTT_T2H_MSG_TYPE_TX_CREDIT_UPDATE_IND
  360. * enabled or not.
  361. */
  362. pdev->cfg.credit_update_enabled =
  363. ol_cfg_is_credit_update_enabled(pdev->ctrl_pdev);
  364. pdev->cfg.request_tx_comp = cds_is_ptp_rx_opt_enabled() ||
  365. cds_is_packet_log_enabled();
  366. pdev->cfg.default_tx_comp_req =
  367. !ol_cfg_tx_free_at_download(pdev->ctrl_pdev);
  368. pdev->cfg.is_full_reorder_offload =
  369. ol_cfg_is_full_reorder_offload(pdev->ctrl_pdev);
  370. QDF_TRACE(QDF_MODULE_ID_HTT, QDF_TRACE_LEVEL_INFO_LOW,
  371. "full_reorder_offloaded %d",
  372. (int)pdev->cfg.is_full_reorder_offload);
  373. pdev->cfg.ce_classify_enabled =
  374. ol_cfg_is_ce_classify_enabled(ctrl_pdev);
  375. QDF_TRACE(QDF_MODULE_ID_HTT, QDF_TRACE_LEVEL_INFO_LOW,
  376. "ce_classify %d",
  377. pdev->cfg.ce_classify_enabled);
  378. if (pdev->cfg.is_high_latency) {
  379. qdf_atomic_init(&pdev->htt_tx_credit.target_delta);
  380. qdf_atomic_init(&pdev->htt_tx_credit.bus_delta);
  381. qdf_atomic_add(HTT_MAX_BUS_CREDIT,
  382. &pdev->htt_tx_credit.bus_delta);
  383. }
  384. pdev->targetdef = htc_get_targetdef(htc_pdev);
  385. #if defined(HELIUMPLUS)
  386. HTT_SET_WIFI_IP(pdev, 2, 0);
  387. #endif /* defined(HELIUMPLUS) */
  388. if (NO_HTT_NEEDED)
  389. goto success;
  390. /*
  391. * Connect to HTC service.
  392. * This has to be done before calling htt_rx_attach,
  393. * since htt_rx_attach involves sending a rx ring configure
  394. * message to the target.
  395. */
  396. HTT_TX_MUTEX_INIT(&pdev->htt_tx_mutex);
  397. HTT_TX_NBUF_QUEUE_MUTEX_INIT(pdev);
  398. HTT_TX_MUTEX_INIT(&pdev->credit_mutex);
  399. if (htt_htc_attach_all(pdev))
  400. goto htt_htc_attach_fail;
  401. if (hif_ce_fastpath_cb_register(osc, htt_t2h_msg_handler_fast, pdev))
  402. qdf_print("failed to register fastpath callback\n");
  403. success:
  404. return pdev;
  405. htt_htc_attach_fail:
  406. HTT_TX_MUTEX_DESTROY(&pdev->credit_mutex);
  407. HTT_TX_MUTEX_DESTROY(&pdev->htt_tx_mutex);
  408. HTT_TX_NBUF_QUEUE_MUTEX_DESTROY(pdev);
  409. qdf_mem_free(pdev);
  410. fail1:
  411. return NULL;
  412. }
  413. /**
  414. * htt_attach() - Allocate and setup HTT TX/RX descriptors
  415. * @pdev: pdev ptr
  416. * @desc_pool_size: size of tx descriptors
  417. *
  418. * Return: 0 for success or error code.
  419. */
  420. int
  421. htt_attach(struct htt_pdev_t *pdev, int desc_pool_size)
  422. {
  423. int i;
  424. int ret = 0;
  425. pdev->is_ipa_uc_enabled = false;
  426. if (ol_cfg_ipa_uc_offload_enabled(pdev->ctrl_pdev))
  427. pdev->is_ipa_uc_enabled = true;
  428. pdev->new_htt_format_enabled = false;
  429. if (ol_cfg_is_htt_new_format_enabled(pdev->ctrl_pdev))
  430. pdev->new_htt_format_enabled = true;
  431. htc_enable_hdr_length_check(pdev->htc_pdev,
  432. pdev->new_htt_format_enabled);
  433. ret = htt_tx_attach(pdev, desc_pool_size);
  434. if (ret)
  435. goto fail1;
  436. ret = htt_rx_attach(pdev);
  437. if (ret)
  438. goto fail2;
  439. /* pre-allocate some HTC_PACKET objects */
  440. for (i = 0; i < HTT_HTC_PKT_POOL_INIT_SIZE; i++) {
  441. struct htt_htc_pkt_union *pkt;
  442. pkt = qdf_mem_malloc(sizeof(*pkt));
  443. if (!pkt)
  444. break;
  445. htt_htc_pkt_free(pdev, &pkt->u.pkt);
  446. }
  447. if (pdev->cfg.is_high_latency) {
  448. /*
  449. * HL - download the whole frame.
  450. * Specify a download length greater than the max MSDU size,
  451. * so the downloads will be limited by the actual frame sizes.
  452. */
  453. pdev->download_len = 5000;
  454. if (ol_cfg_tx_free_at_download(pdev->ctrl_pdev) &&
  455. !pdev->cfg.request_tx_comp)
  456. pdev->tx_send_complete_part2 =
  457. ol_tx_download_done_hl_free;
  458. else
  459. pdev->tx_send_complete_part2 =
  460. ol_tx_download_done_hl_retain;
  461. /*
  462. * CHECK THIS LATER: does the HL HTT version of
  463. * htt_rx_mpdu_desc_list_next
  464. * (which is not currently implemented) present the
  465. * adf_nbuf_data(rx_ind_msg)
  466. * as the abstract rx descriptor?
  467. * If not, the rx_fw_desc_offset initialization
  468. * here will have to be adjusted accordingly.
  469. * NOTE: for HL, because fw rx desc is in ind msg,
  470. * not in rx desc, so the
  471. * offset should be negtive value
  472. */
  473. pdev->rx_fw_desc_offset =
  474. HTT_ENDIAN_BYTE_IDX_SWAP(
  475. HTT_RX_IND_FW_RX_DESC_BYTE_OFFSET
  476. - HTT_RX_IND_HL_BYTES);
  477. htt_h2t_rx_ring_cfg_msg = htt_h2t_rx_ring_cfg_msg_hl;
  478. htt_h2t_rx_ring_rfs_cfg_msg = htt_h2t_rx_ring_rfs_cfg_msg_hl;
  479. /* initialize the txrx credit count */
  480. ol_tx_target_credit_update(
  481. pdev->txrx_pdev, ol_cfg_target_tx_credit(
  482. pdev->ctrl_pdev));
  483. } else {
  484. enum wlan_frm_fmt frm_type;
  485. /*
  486. * LL - download just the initial portion of the frame.
  487. * Download enough to cover the encapsulation headers checked
  488. * by the target's tx classification descriptor engine.
  489. *
  490. * For LL, the FW rx desc directly referenced at its location
  491. * inside the rx indication message.
  492. */
  493. /* account for the 802.3 or 802.11 header */
  494. frm_type = ol_cfg_frame_type(pdev->ctrl_pdev);
  495. if (frm_type == wlan_frm_fmt_native_wifi) {
  496. pdev->download_len = HTT_TX_HDR_SIZE_NATIVE_WIFI;
  497. } else if (frm_type == wlan_frm_fmt_802_3) {
  498. pdev->download_len = HTT_TX_HDR_SIZE_ETHERNET;
  499. } else {
  500. QDF_TRACE(QDF_MODULE_ID_HTT, QDF_TRACE_LEVEL_ERROR,
  501. "Unexpected frame type spec: %d", frm_type);
  502. HTT_ASSERT0(0);
  503. }
  504. /*
  505. * Account for the optional L2 / ethernet header fields:
  506. * 802.1Q, LLC/SNAP
  507. */
  508. pdev->download_len +=
  509. HTT_TX_HDR_SIZE_802_1Q + HTT_TX_HDR_SIZE_LLC_SNAP;
  510. /*
  511. * Account for the portion of the L3 (IP) payload that the
  512. * target needs for its tx classification.
  513. */
  514. pdev->download_len += ol_cfg_tx_download_size(pdev->ctrl_pdev);
  515. /*
  516. * Account for the HTT tx descriptor, including the
  517. * HTC header + alignment padding.
  518. */
  519. pdev->download_len += sizeof(struct htt_host_tx_desc_t);
  520. /*
  521. * The TXCOMPACT htt_tx_sched function uses pdev->download_len
  522. * to apply for all requeued tx frames. Thus,
  523. * pdev->download_len has to be the largest download length of
  524. * any tx frame that will be downloaded.
  525. * This maximum download length is for management tx frames,
  526. * which have an 802.11 header.
  527. */
  528. #ifdef ATH_11AC_TXCOMPACT
  529. pdev->download_len = sizeof(struct htt_host_tx_desc_t)
  530. + HTT_TX_HDR_SIZE_OUTER_HDR_MAX /* worst case */
  531. + HTT_TX_HDR_SIZE_802_1Q
  532. + HTT_TX_HDR_SIZE_LLC_SNAP
  533. + ol_cfg_tx_download_size(pdev->ctrl_pdev);
  534. #endif
  535. pdev->tx_send_complete_part2 = ol_tx_download_done_ll;
  536. /*
  537. * For LL, the FW rx desc is alongside the HW rx desc fields in
  538. * the htt_host_rx_desc_base struct/.
  539. */
  540. pdev->rx_fw_desc_offset = RX_STD_DESC_FW_MSDU_OFFSET;
  541. htt_h2t_rx_ring_cfg_msg = htt_h2t_rx_ring_cfg_msg_ll;
  542. htt_h2t_rx_ring_rfs_cfg_msg = htt_h2t_rx_ring_rfs_cfg_msg_ll;
  543. }
  544. return 0;
  545. fail2:
  546. htt_tx_detach(pdev);
  547. fail1:
  548. return ret;
  549. }
  550. QDF_STATUS htt_attach_target(htt_pdev_handle pdev)
  551. {
  552. QDF_STATUS status;
  553. status = htt_h2t_ver_req_msg(pdev);
  554. if (status != QDF_STATUS_SUCCESS) {
  555. QDF_TRACE(QDF_MODULE_ID_HTT, QDF_TRACE_LEVEL_ERROR,
  556. "%s:%d: could not send h2t_ver_req msg",
  557. __func__, __LINE__);
  558. return status;
  559. }
  560. #if defined(HELIUMPLUS)
  561. /*
  562. * Send the frag_desc info to target.
  563. */
  564. status = htt_h2t_frag_desc_bank_cfg_msg(pdev);
  565. if (status != QDF_STATUS_SUCCESS) {
  566. QDF_TRACE(QDF_MODULE_ID_HTT, QDF_TRACE_LEVEL_ERROR,
  567. "%s:%d: could not send h2t_frag_desc_bank_cfg msg",
  568. __func__, __LINE__);
  569. return status;
  570. }
  571. #endif /* defined(HELIUMPLUS) */
  572. /*
  573. * If applicable, send the rx ring config message to the target.
  574. * The host could wait for the HTT version number confirmation message
  575. * from the target before sending any further HTT messages, but it's
  576. * reasonable to assume that the host and target HTT version numbers
  577. * match, and proceed immediately with the remaining configuration
  578. * handshaking.
  579. */
  580. status = htt_h2t_rx_ring_rfs_cfg_msg(pdev);
  581. if (status != QDF_STATUS_SUCCESS) {
  582. QDF_TRACE(QDF_MODULE_ID_HTT, QDF_TRACE_LEVEL_ERROR,
  583. "%s:%d: could not send h2t_rx_ring_rfs_cfg msg",
  584. __func__, __LINE__);
  585. return status;
  586. }
  587. status = htt_h2t_rx_ring_cfg_msg(pdev);
  588. if (status != QDF_STATUS_SUCCESS) {
  589. QDF_TRACE(QDF_MODULE_ID_HTT, QDF_TRACE_LEVEL_ERROR,
  590. "%s:%d: could not send h2t_rx_ring_cfg msg",
  591. __func__, __LINE__);
  592. return status;
  593. }
  594. status = HTT_IPA_CONFIG(pdev, status);
  595. if (status != QDF_STATUS_SUCCESS) {
  596. QDF_TRACE(QDF_MODULE_ID_HTT, QDF_TRACE_LEVEL_ERROR,
  597. "%s:%d: could not send h2t_ipa_uc_rsc_cfg msg",
  598. __func__, __LINE__);
  599. return status;
  600. }
  601. return status;
  602. }
  603. void htt_detach(htt_pdev_handle pdev)
  604. {
  605. htt_rx_detach(pdev);
  606. htt_tx_detach(pdev);
  607. htt_htc_pkt_pool_free(pdev);
  608. #ifdef ATH_11AC_TXCOMPACT
  609. htt_htc_misc_pkt_pool_free(pdev);
  610. #endif
  611. HTT_TX_MUTEX_DESTROY(&pdev->credit_mutex);
  612. HTT_TX_MUTEX_DESTROY(&pdev->htt_tx_mutex);
  613. HTT_TX_NBUF_QUEUE_MUTEX_DESTROY(pdev);
  614. }
  615. /**
  616. * htt_pdev_free() - Free HTT pdev
  617. * @pdev: htt pdev
  618. *
  619. * Return: none
  620. */
  621. void htt_pdev_free(htt_pdev_handle pdev)
  622. {
  623. qdf_mem_free(pdev);
  624. }
  625. void htt_detach_target(htt_pdev_handle pdev)
  626. {
  627. }
  628. static inline
  629. int htt_update_endpoint(struct htt_pdev_t *pdev,
  630. uint16_t service_id, HTC_ENDPOINT_ID ep)
  631. {
  632. struct hif_opaque_softc *hif_ctx;
  633. uint8_t ul = 0xff, dl = 0xff;
  634. int ul_polled, dl_polled;
  635. int tx_service = 0;
  636. int rc = 0;
  637. hif_ctx = cds_get_context(QDF_MODULE_ID_HIF);
  638. if (qdf_unlikely(!hif_ctx)) {
  639. QDF_ASSERT(hif_ctx);
  640. QDF_TRACE(QDF_MODULE_ID_HTT, QDF_TRACE_LEVEL_ERROR,
  641. "%s:%d: assuming non-tx service.",
  642. __func__, __LINE__);
  643. } else {
  644. ul = dl = 0xff;
  645. if (QDF_STATUS_SUCCESS !=
  646. hif_map_service_to_pipe(hif_ctx, service_id,
  647. &ul, &dl,
  648. &ul_polled, &dl_polled))
  649. QDF_TRACE(QDF_MODULE_ID_HTT, QDF_TRACE_LEVEL_INFO,
  650. "%s:%d: assuming non-tx srv.",
  651. __func__, __LINE__);
  652. else
  653. tx_service = (ul != 0xff);
  654. }
  655. if (tx_service) {
  656. /* currently we have only one OUT htt tx service */
  657. QDF_BUG(service_id == HTT_DATA_MSG_SVC);
  658. pdev->htc_tx_endpoint = ep;
  659. hif_save_htc_htt_config_endpoint(hif_ctx, ep);
  660. rc = 1;
  661. }
  662. return rc;
  663. }
  664. int htt_htc_attach(struct htt_pdev_t *pdev, uint16_t service_id)
  665. {
  666. struct htc_service_connect_req connect;
  667. struct htc_service_connect_resp response;
  668. QDF_STATUS status;
  669. qdf_mem_zero(&connect, sizeof(connect));
  670. qdf_mem_zero(&response, sizeof(response));
  671. connect.pMetaData = NULL;
  672. connect.MetaDataLength = 0;
  673. connect.EpCallbacks.pContext = pdev;
  674. connect.EpCallbacks.EpTxComplete = htt_h2t_send_complete;
  675. connect.EpCallbacks.EpTxCompleteMultiple = NULL;
  676. connect.EpCallbacks.EpRecv = htt_t2h_msg_handler;
  677. connect.EpCallbacks.ep_resume_tx_queue = htt_tx_resume_handler;
  678. connect.EpCallbacks.ep_padding_credit_update =
  679. htt_tx_padding_credit_update_handler;
  680. /* rx buffers currently are provided by HIF, not by EpRecvRefill */
  681. connect.EpCallbacks.EpRecvRefill = NULL;
  682. connect.EpCallbacks.RecvRefillWaterMark = 1;
  683. /* N/A, fill is done by HIF */
  684. connect.EpCallbacks.EpSendFull = htt_h2t_full;
  685. /*
  686. * Specify how deep to let a queue get before htc_send_pkt will
  687. * call the EpSendFull function due to excessive send queue depth.
  688. */
  689. connect.MaxSendQueueDepth = HTT_MAX_SEND_QUEUE_DEPTH;
  690. /* disable flow control for HTT data message service */
  691. htt_htc_credit_flow_disable(pdev, &connect);
  692. /* connect to control service */
  693. connect.service_id = service_id;
  694. status = htc_connect_service(pdev->htc_pdev, &connect, &response);
  695. if (status != QDF_STATUS_SUCCESS) {
  696. if (cds_is_fw_down())
  697. return -EIO;
  698. if (status == QDF_STATUS_E_NOMEM ||
  699. cds_is_self_recovery_enabled())
  700. return qdf_status_to_os_return(status);
  701. QDF_BUG(0);
  702. }
  703. htt_update_endpoint(pdev, service_id, response.Endpoint);
  704. /* Start TX HTT2 service if the target support it. */
  705. htt_htc_tx_htt2_service_start(pdev, &connect, &response);
  706. return 0; /* success */
  707. }
  708. void htt_log_rx_ring_info(htt_pdev_handle pdev)
  709. {
  710. if (!pdev) {
  711. QDF_TRACE(QDF_MODULE_ID_HTT, QDF_TRACE_LEVEL_ERROR,
  712. "%s: htt pdev is NULL", __func__);
  713. return;
  714. }
  715. QDF_TRACE(QDF_MODULE_ID_HTT, QDF_TRACE_LEVEL_DEBUG,
  716. "%s: Data Stall Detected with reason 4 (=FW_RX_REFILL_FAILED)."
  717. "src htt rx ring: space for %d elements, filled with %d buffers, buffers in the ring %d, refill debt %d",
  718. __func__, pdev->rx_ring.size, pdev->rx_ring.fill_level,
  719. pdev->rx_ring.fill_cnt,
  720. qdf_atomic_read(&pdev->rx_ring.refill_debt));
  721. }
  722. #if HTT_DEBUG_LEVEL > 5
  723. void htt_display(htt_pdev_handle pdev, int indent)
  724. {
  725. qdf_print("%*s%s:\n", indent, " ", "HTT");
  726. qdf_print("%*stx desc pool: %d elems of %d bytes, %d allocated\n",
  727. indent + 4, " ",
  728. pdev->tx_descs.pool_elems,
  729. pdev->tx_descs.size, pdev->tx_descs.alloc_cnt);
  730. qdf_print("%*srx ring: space for %d elems, filled with %d buffers\n",
  731. indent + 4, " ",
  732. pdev->rx_ring.size, pdev->rx_ring.fill_level);
  733. qdf_print("%*sat %pK (%llx paddr)\n", indent + 8, " ",
  734. pdev->rx_ring.buf.paddrs_ring,
  735. (unsigned long long)pdev->rx_ring.base_paddr);
  736. qdf_print("%*snetbuf ring @ %pK\n", indent + 8, " ",
  737. pdev->rx_ring.buf.netbufs_ring);
  738. qdf_print("%*sFW_IDX shadow register: vaddr = %pK, paddr = %llx\n",
  739. indent + 8, " ",
  740. pdev->rx_ring.alloc_idx.vaddr,
  741. (unsigned long long)pdev->rx_ring.alloc_idx.paddr);
  742. qdf_print("%*sSW enqueue idx= %d, SW dequeue idx: desc= %d, buf= %d\n",
  743. indent + 8, " ", *pdev->rx_ring.alloc_idx.vaddr,
  744. pdev->rx_ring.sw_rd_idx.msdu_desc,
  745. pdev->rx_ring.sw_rd_idx.msdu_payld);
  746. }
  747. #endif
  748. #ifdef IPA_OFFLOAD
  749. /**
  750. * htt_ipa_uc_attach() - Allocate UC data path resources
  751. * @pdev: handle to the HTT instance
  752. *
  753. * Return: 0 success
  754. * none 0 fail
  755. */
  756. int htt_ipa_uc_attach(struct htt_pdev_t *pdev)
  757. {
  758. int error;
  759. QDF_TRACE(QDF_MODULE_ID_HTT, QDF_TRACE_LEVEL_DEBUG, "%s: enter",
  760. __func__);
  761. /* TX resource attach */
  762. error = htt_tx_ipa_uc_attach(
  763. pdev,
  764. ol_cfg_ipa_uc_tx_buf_size(pdev->ctrl_pdev),
  765. ol_cfg_ipa_uc_tx_max_buf_cnt(pdev->ctrl_pdev),
  766. ol_cfg_ipa_uc_tx_partition_base(pdev->ctrl_pdev));
  767. if (error) {
  768. QDF_TRACE(QDF_MODULE_ID_HTT, QDF_TRACE_LEVEL_ERROR,
  769. "HTT IPA UC TX attach fail code %d", error);
  770. HTT_ASSERT0(0);
  771. return error;
  772. }
  773. /* RX resource attach */
  774. error = htt_rx_ipa_uc_attach(
  775. pdev, qdf_get_pwr2(pdev->rx_ring.fill_level));
  776. if (error) {
  777. QDF_TRACE(QDF_MODULE_ID_HTT, QDF_TRACE_LEVEL_ERROR,
  778. "HTT IPA UC RX attach fail code %d", error);
  779. htt_tx_ipa_uc_detach(pdev);
  780. HTT_ASSERT0(0);
  781. return error;
  782. }
  783. QDF_TRACE(QDF_MODULE_ID_HTT, QDF_TRACE_LEVEL_DEBUG, "%s: exit",
  784. __func__);
  785. return 0; /* success */
  786. }
  787. /**
  788. * htt_ipa_uc_attach() - Remove UC data path resources
  789. * @pdev: handle to the HTT instance
  790. *
  791. * Return: None
  792. */
  793. void htt_ipa_uc_detach(struct htt_pdev_t *pdev)
  794. {
  795. QDF_TRACE(QDF_MODULE_ID_HTT, QDF_TRACE_LEVEL_DEBUG, "%s: enter",
  796. __func__);
  797. /* TX IPA micro controller detach */
  798. htt_tx_ipa_uc_detach(pdev);
  799. /* RX IPA micro controller detach */
  800. htt_rx_ipa_uc_detach(pdev);
  801. QDF_TRACE(QDF_MODULE_ID_HTT, QDF_TRACE_LEVEL_DEBUG, "%s: exit",
  802. __func__);
  803. }
  804. int
  805. htt_ipa_uc_get_resource(htt_pdev_handle pdev,
  806. qdf_shared_mem_t **ce_sr,
  807. qdf_shared_mem_t **tx_comp_ring,
  808. qdf_shared_mem_t **rx_rdy_ring,
  809. qdf_shared_mem_t **rx2_rdy_ring,
  810. qdf_shared_mem_t **rx_proc_done_idx,
  811. qdf_shared_mem_t **rx2_proc_done_idx,
  812. uint32_t *ce_sr_ring_size,
  813. qdf_dma_addr_t *ce_reg_paddr,
  814. uint32_t *tx_num_alloc_buffer)
  815. {
  816. /* Release allocated resource to client */
  817. *tx_comp_ring = pdev->ipa_uc_tx_rsc.tx_comp_ring;
  818. *rx_rdy_ring = pdev->ipa_uc_rx_rsc.rx_ind_ring;
  819. *rx2_rdy_ring = pdev->ipa_uc_rx_rsc.rx2_ind_ring;
  820. *rx_proc_done_idx = pdev->ipa_uc_rx_rsc.rx_ipa_prc_done_idx;
  821. *rx2_proc_done_idx = pdev->ipa_uc_rx_rsc.rx2_ipa_prc_done_idx;
  822. *tx_num_alloc_buffer = (uint32_t)pdev->ipa_uc_tx_rsc.alloc_tx_buf_cnt;
  823. /* Get copy engine, bus resource */
  824. htc_ipa_get_ce_resource(pdev->htc_pdev, ce_sr,
  825. ce_sr_ring_size, ce_reg_paddr);
  826. return 0;
  827. }
  828. /**
  829. * htt_ipa_uc_set_doorbell_paddr() - Propagate IPA doorbell address
  830. * @pdev: handle to the HTT instance
  831. * @ipa_uc_tx_doorbell_paddr: TX doorbell base physical address
  832. * @ipa_uc_rx_doorbell_paddr: RX doorbell base physical address
  833. *
  834. * Return: 0 success
  835. */
  836. int
  837. htt_ipa_uc_set_doorbell_paddr(htt_pdev_handle pdev,
  838. qdf_dma_addr_t ipa_uc_tx_doorbell_paddr,
  839. qdf_dma_addr_t ipa_uc_rx_doorbell_paddr)
  840. {
  841. pdev->ipa_uc_tx_rsc.tx_comp_idx_paddr = ipa_uc_tx_doorbell_paddr;
  842. pdev->ipa_uc_rx_rsc.rx_rdy_idx_paddr = ipa_uc_rx_doorbell_paddr;
  843. return 0;
  844. }
  845. #endif /* IPA_OFFLOAD */
  846. /**
  847. * htt_mark_first_wakeup_packet() - set flag to indicate that
  848. * fw is compatible for marking first packet after wow wakeup
  849. * @pdev: pointer to htt pdev
  850. * @value: 1 for enabled/ 0 for disabled
  851. *
  852. * Return: None
  853. */
  854. void htt_mark_first_wakeup_packet(htt_pdev_handle pdev,
  855. uint8_t value)
  856. {
  857. if (!pdev) {
  858. QDF_TRACE(QDF_MODULE_ID_HTT, QDF_TRACE_LEVEL_ERROR,
  859. "%s: htt pdev is NULL", __func__);
  860. return;
  861. }
  862. pdev->cfg.is_first_wakeup_packet = value;
  863. }