htt.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611
  1. /*
  2. * Copyright (c) 2011, 2014-2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. /**
  27. * @file htt.c
  28. * @brief Provide functions to create+init and destroy a HTT instance.
  29. * @details
  30. * This file contains functions for creating a HTT instance; initializing
  31. * the HTT instance, e.g. by allocating a pool of HTT tx descriptors and
  32. * connecting the HTT service with HTC; and deleting a HTT instance.
  33. */
  34. #include <cdf_memory.h> /* cdf_mem_malloc */
  35. #include <cdf_types.h> /* cdf_device_t, cdf_print */
  36. #include <htt.h> /* htt_tx_msdu_desc_t */
  37. #include <ol_cfg.h>
  38. #include <ol_txrx_htt_api.h> /* ol_tx_dowload_done_ll, etc. */
  39. #include <ol_htt_api.h>
  40. #include <htt_internal.h>
  41. #include <ol_htt_tx_api.h>
  42. #include "hif.h"
  43. #define HTT_HTC_PKT_POOL_INIT_SIZE 100 /* enough for a large A-MPDU */
  44. A_STATUS(*htt_h2t_rx_ring_cfg_msg)(struct htt_pdev_t *pdev);
  45. #ifdef IPA_OFFLOAD
  46. A_STATUS htt_ipa_config(htt_pdev_handle pdev, A_STATUS status)
  47. {
  48. if ((A_OK == status) &&
  49. ol_cfg_ipa_uc_offload_enabled(pdev->ctrl_pdev))
  50. status = htt_h2t_ipa_uc_rsc_cfg_msg(pdev);
  51. return status;
  52. }
  53. #define HTT_IPA_CONFIG htt_ipa_config
  54. #else
  55. #define HTT_IPA_CONFIG(pdev, status) status /* no-op */
  56. #endif /* IPA_OFFLOAD */
  57. struct htt_htc_pkt *htt_htc_pkt_alloc(struct htt_pdev_t *pdev)
  58. {
  59. struct htt_htc_pkt_union *pkt = NULL;
  60. HTT_TX_MUTEX_ACQUIRE(&pdev->htt_tx_mutex);
  61. if (pdev->htt_htc_pkt_freelist) {
  62. pkt = pdev->htt_htc_pkt_freelist;
  63. pdev->htt_htc_pkt_freelist = pdev->htt_htc_pkt_freelist->u.next;
  64. }
  65. HTT_TX_MUTEX_RELEASE(&pdev->htt_tx_mutex);
  66. if (pkt == NULL)
  67. pkt = cdf_mem_malloc(sizeof(*pkt));
  68. return &pkt->u.pkt; /* not actually a dereference */
  69. }
  70. void htt_htc_pkt_free(struct htt_pdev_t *pdev, struct htt_htc_pkt *pkt)
  71. {
  72. struct htt_htc_pkt_union *u_pkt = (struct htt_htc_pkt_union *)pkt;
  73. HTT_TX_MUTEX_ACQUIRE(&pdev->htt_tx_mutex);
  74. u_pkt->u.next = pdev->htt_htc_pkt_freelist;
  75. pdev->htt_htc_pkt_freelist = u_pkt;
  76. HTT_TX_MUTEX_RELEASE(&pdev->htt_tx_mutex);
  77. }
  78. void htt_htc_pkt_pool_free(struct htt_pdev_t *pdev)
  79. {
  80. struct htt_htc_pkt_union *pkt, *next;
  81. pkt = pdev->htt_htc_pkt_freelist;
  82. while (pkt) {
  83. next = pkt->u.next;
  84. cdf_mem_free(pkt);
  85. pkt = next;
  86. }
  87. pdev->htt_htc_pkt_freelist = NULL;
  88. }
  89. #ifdef ATH_11AC_TXCOMPACT
  90. void htt_htc_misc_pkt_list_add(struct htt_pdev_t *pdev, struct htt_htc_pkt *pkt)
  91. {
  92. struct htt_htc_pkt_union *u_pkt = (struct htt_htc_pkt_union *)pkt;
  93. HTT_TX_MUTEX_ACQUIRE(&pdev->htt_tx_mutex);
  94. if (pdev->htt_htc_pkt_misclist) {
  95. u_pkt->u.next = pdev->htt_htc_pkt_misclist;
  96. pdev->htt_htc_pkt_misclist = u_pkt;
  97. } else {
  98. pdev->htt_htc_pkt_misclist = u_pkt;
  99. }
  100. HTT_TX_MUTEX_RELEASE(&pdev->htt_tx_mutex);
  101. }
  102. void htt_htc_misc_pkt_pool_free(struct htt_pdev_t *pdev)
  103. {
  104. struct htt_htc_pkt_union *pkt, *next;
  105. cdf_nbuf_t netbuf;
  106. pkt = pdev->htt_htc_pkt_misclist;
  107. while (pkt) {
  108. next = pkt->u.next;
  109. netbuf = (cdf_nbuf_t) (pkt->u.pkt.htc_pkt.pNetBufContext);
  110. cdf_nbuf_unmap(pdev->osdev, netbuf, CDF_DMA_TO_DEVICE);
  111. cdf_nbuf_free(netbuf);
  112. cdf_mem_free(pkt);
  113. pkt = next;
  114. }
  115. pdev->htt_htc_pkt_misclist = NULL;
  116. }
  117. #endif
  118. /**
  119. * htt_pdev_alloc() - allocate HTT pdev
  120. * @txrx_pdev: txrx pdev
  121. * @ctrl_pdev: cfg pdev
  122. * @htc_pdev: HTC pdev
  123. * @osdev: os device
  124. *
  125. * Return: HTT pdev handle
  126. */
  127. htt_pdev_handle
  128. htt_pdev_alloc(ol_txrx_pdev_handle txrx_pdev,
  129. ol_pdev_handle ctrl_pdev,
  130. HTC_HANDLE htc_pdev, cdf_device_t osdev)
  131. {
  132. struct htt_pdev_t *pdev;
  133. pdev = cdf_mem_malloc(sizeof(*pdev));
  134. if (!pdev)
  135. goto fail1;
  136. pdev->osdev = osdev;
  137. pdev->ctrl_pdev = ctrl_pdev;
  138. pdev->txrx_pdev = txrx_pdev;
  139. pdev->htc_pdev = htc_pdev;
  140. cdf_mem_set(&pdev->stats, sizeof(pdev->stats), 0);
  141. pdev->htt_htc_pkt_freelist = NULL;
  142. #ifdef ATH_11AC_TXCOMPACT
  143. pdev->htt_htc_pkt_misclist = NULL;
  144. #endif
  145. pdev->cfg.default_tx_comp_req =
  146. !ol_cfg_tx_free_at_download(pdev->ctrl_pdev);
  147. pdev->cfg.is_full_reorder_offload =
  148. ol_cfg_is_full_reorder_offload(pdev->ctrl_pdev);
  149. cdf_print("is_full_reorder_offloaded? %d\n",
  150. (int)pdev->cfg.is_full_reorder_offload);
  151. pdev->cfg.ce_classify_enabled =
  152. ol_cfg_is_ce_classify_enabled(ctrl_pdev);
  153. cdf_print("ce_classify_enabled %d\n",
  154. pdev->cfg.ce_classify_enabled);
  155. pdev->targetdef = htc_get_targetdef(htc_pdev);
  156. #if defined(HELIUMPLUS_PADDR64)
  157. /* TODO: OKA: Remove hard-coding */
  158. HTT_SET_WIFI_IP(pdev, 2, 0);
  159. #endif /* defined(HELIUMPLUS_PADDR64) */
  160. /*
  161. * Connect to HTC service.
  162. * This has to be done before calling htt_rx_attach,
  163. * since htt_rx_attach involves sending a rx ring configure
  164. * message to the target.
  165. */
  166. /* AR6004 don't need HTT layer. */
  167. #ifndef AR6004_HW
  168. if (htt_htc_attach(pdev))
  169. goto fail2;
  170. #endif
  171. return pdev;
  172. fail2:
  173. cdf_mem_free(pdev);
  174. fail1:
  175. return NULL;
  176. }
  177. /**
  178. * htt_attach() - Allocate and setup HTT TX/RX descriptors
  179. * @pdev: pdev ptr
  180. * @desc_pool_size: size of tx descriptors
  181. *
  182. * Return: 0 for success or error code.
  183. */
  184. int
  185. htt_attach(struct htt_pdev_t *pdev, int desc_pool_size)
  186. {
  187. int i;
  188. enum wlan_frm_fmt frm_type;
  189. int ret = 0;
  190. ret = htt_tx_attach(pdev, desc_pool_size);
  191. if (ret)
  192. goto fail1;
  193. ret = htt_rx_attach(pdev);
  194. if (ret)
  195. goto fail2;
  196. HTT_TX_MUTEX_INIT(&pdev->htt_tx_mutex);
  197. HTT_TX_NBUF_QUEUE_MUTEX_INIT(pdev);
  198. /* pre-allocate some HTC_PACKET objects */
  199. for (i = 0; i < HTT_HTC_PKT_POOL_INIT_SIZE; i++) {
  200. struct htt_htc_pkt_union *pkt;
  201. pkt = cdf_mem_malloc(sizeof(*pkt));
  202. if (!pkt)
  203. break;
  204. htt_htc_pkt_free(pdev, &pkt->u.pkt);
  205. }
  206. /*
  207. * LL - download just the initial portion of the frame.
  208. * Download enough to cover the encapsulation headers checked
  209. * by the target's tx classification descriptor engine.
  210. */
  211. /* account for the 802.3 or 802.11 header */
  212. frm_type = ol_cfg_frame_type(pdev->ctrl_pdev);
  213. if (frm_type == wlan_frm_fmt_native_wifi) {
  214. pdev->download_len = HTT_TX_HDR_SIZE_NATIVE_WIFI;
  215. } else if (frm_type == wlan_frm_fmt_802_3) {
  216. pdev->download_len = HTT_TX_HDR_SIZE_ETHERNET;
  217. } else {
  218. cdf_print("Unexpected frame type spec: %d\n", frm_type);
  219. HTT_ASSERT0(0);
  220. }
  221. /*
  222. * Account for the optional L2 / ethernet header fields:
  223. * 802.1Q, LLC/SNAP
  224. */
  225. pdev->download_len +=
  226. HTT_TX_HDR_SIZE_802_1Q + HTT_TX_HDR_SIZE_LLC_SNAP;
  227. /*
  228. * Account for the portion of the L3 (IP) payload that the
  229. * target needs for its tx classification.
  230. */
  231. pdev->download_len += ol_cfg_tx_download_size(pdev->ctrl_pdev);
  232. /*
  233. * Account for the HTT tx descriptor, including the
  234. * HTC header + alignment padding.
  235. */
  236. pdev->download_len += sizeof(struct htt_host_tx_desc_t);
  237. /*
  238. * The TXCOMPACT htt_tx_sched function uses pdev->download_len
  239. * to apply for all requeued tx frames. Thus,
  240. * pdev->download_len has to be the largest download length of
  241. * any tx frame that will be downloaded.
  242. * This maximum download length is for management tx frames,
  243. * which have an 802.11 header.
  244. */
  245. #ifdef ATH_11AC_TXCOMPACT
  246. pdev->download_len = sizeof(struct htt_host_tx_desc_t)
  247. + HTT_TX_HDR_SIZE_OUTER_HDR_MAX /* worst case */
  248. + HTT_TX_HDR_SIZE_802_1Q
  249. + HTT_TX_HDR_SIZE_LLC_SNAP
  250. + ol_cfg_tx_download_size(pdev->ctrl_pdev);
  251. #endif
  252. pdev->tx_send_complete_part2 = ol_tx_download_done_ll;
  253. /*
  254. * For LL, the FW rx desc is alongside the HW rx desc fields in
  255. * the htt_host_rx_desc_base struct/.
  256. */
  257. pdev->rx_fw_desc_offset = RX_STD_DESC_FW_MSDU_OFFSET;
  258. htt_h2t_rx_ring_cfg_msg = htt_h2t_rx_ring_cfg_msg_ll;
  259. return 0;
  260. fail2:
  261. htt_tx_detach(pdev);
  262. fail1:
  263. return ret;
  264. }
  265. A_STATUS htt_attach_target(htt_pdev_handle pdev)
  266. {
  267. A_STATUS status;
  268. status = htt_h2t_ver_req_msg(pdev);
  269. if (status != A_OK)
  270. return status;
  271. #if defined(HELIUMPLUS_PADDR64)
  272. /*
  273. * Send the frag_desc info to target.
  274. */
  275. htt_h2t_frag_desc_bank_cfg_msg(pdev);
  276. #endif /* defined(HELIUMPLUS_PADDR64) */
  277. /*
  278. * If applicable, send the rx ring config message to the target.
  279. * The host could wait for the HTT version number confirmation message
  280. * from the target before sending any further HTT messages, but it's
  281. * reasonable to assume that the host and target HTT version numbers
  282. * match, and proceed immediately with the remaining configuration
  283. * handshaking.
  284. */
  285. status = htt_h2t_rx_ring_cfg_msg(pdev);
  286. status = HTT_IPA_CONFIG(pdev, status);
  287. return status;
  288. }
  289. void htt_detach(htt_pdev_handle pdev)
  290. {
  291. htt_rx_detach(pdev);
  292. htt_tx_detach(pdev);
  293. htt_htc_pkt_pool_free(pdev);
  294. #ifdef ATH_11AC_TXCOMPACT
  295. htt_htc_misc_pkt_pool_free(pdev);
  296. #endif
  297. HTT_TX_MUTEX_DESTROY(&pdev->htt_tx_mutex);
  298. HTT_TX_NBUF_QUEUE_MUTEX_DESTROY(pdev);
  299. htt_rx_dbg_rxbuf_deinit(pdev);
  300. }
  301. /**
  302. * htt_pdev_free() - Free HTT pdev
  303. * @pdev: htt pdev
  304. *
  305. * Return: none
  306. */
  307. void htt_pdev_free(htt_pdev_handle pdev)
  308. {
  309. cdf_mem_free(pdev);
  310. }
  311. void htt_detach_target(htt_pdev_handle pdev)
  312. {
  313. }
  314. #ifdef WLAN_FEATURE_FASTPATH
  315. /**
  316. * htt_pkt_dl_len_get() HTT packet download length for fastpath case
  317. *
  318. * @htt_dev: pointer to htt device.
  319. *
  320. * As fragment one already downloaded HTT/HTC header, download length is
  321. * remaining bytes.
  322. *
  323. * Return: download length
  324. */
  325. int htt_pkt_dl_len_get(struct htt_pdev_t *htt_dev)
  326. {
  327. return htt_dev->download_len - sizeof(struct htt_host_tx_desc_t);
  328. }
  329. #else
  330. int htt_pkt_dl_len_get(struct htt_pdev_t *htt_dev)
  331. {
  332. return 0;
  333. }
  334. #endif
  335. int htt_htc_attach(struct htt_pdev_t *pdev)
  336. {
  337. HTC_SERVICE_CONNECT_REQ connect;
  338. HTC_SERVICE_CONNECT_RESP response;
  339. A_STATUS status;
  340. cdf_mem_set(&connect, sizeof(connect), 0);
  341. cdf_mem_set(&response, sizeof(response), 0);
  342. connect.pMetaData = NULL;
  343. connect.MetaDataLength = 0;
  344. connect.EpCallbacks.pContext = pdev;
  345. connect.EpCallbacks.EpTxComplete = htt_h2t_send_complete;
  346. connect.EpCallbacks.EpTxCompleteMultiple = NULL;
  347. connect.EpCallbacks.EpRecv = htt_t2h_msg_handler;
  348. connect.EpCallbacks.ep_resume_tx_queue = htt_tx_resume_handler;
  349. /* rx buffers currently are provided by HIF, not by EpRecvRefill */
  350. connect.EpCallbacks.EpRecvRefill = NULL;
  351. connect.EpCallbacks.RecvRefillWaterMark = 1;
  352. /* N/A, fill is done by HIF */
  353. connect.EpCallbacks.EpSendFull = htt_h2t_full;
  354. /*
  355. * Specify how deep to let a queue get before htc_send_pkt will
  356. * call the EpSendFull function due to excessive send queue depth.
  357. */
  358. connect.MaxSendQueueDepth = HTT_MAX_SEND_QUEUE_DEPTH;
  359. /* disable flow control for HTT data message service */
  360. #ifndef HIF_SDIO
  361. connect.ConnectionFlags |= HTC_CONNECT_FLAGS_DISABLE_CREDIT_FLOW_CTRL;
  362. #endif
  363. /* connect to control service */
  364. connect.service_id = HTT_DATA_MSG_SVC;
  365. status = htc_connect_service(pdev->htc_pdev, &connect, &response);
  366. if (status != A_OK)
  367. return -EIO; /* failure */
  368. pdev->htc_endpoint = response.Endpoint;
  369. #if defined(HIF_PCI)
  370. hif_save_htc_htt_config_endpoint(pdev->htc_endpoint);
  371. #endif
  372. return 0; /* success */
  373. }
  374. #if HTT_DEBUG_LEVEL > 5
  375. void htt_display(htt_pdev_handle pdev, int indent)
  376. {
  377. cdf_print("%*s%s:\n", indent, " ", "HTT");
  378. cdf_print("%*stx desc pool: %d elems of %d bytes, %d allocated\n",
  379. indent + 4, " ",
  380. pdev->tx_descs.pool_elems,
  381. pdev->tx_descs.size, pdev->tx_descs.alloc_cnt);
  382. cdf_print("%*srx ring: space for %d elems, filled with %d buffers\n",
  383. indent + 4, " ",
  384. pdev->rx_ring.size, pdev->rx_ring.fill_level);
  385. cdf_print("%*sat %p (%#x paddr)\n", indent + 8, " ",
  386. pdev->rx_ring.buf.paddrs_ring, pdev->rx_ring.base_paddr);
  387. cdf_print("%*snetbuf ring @ %p\n", indent + 8, " ",
  388. pdev->rx_ring.buf.netbufs_ring);
  389. cdf_print("%*sFW_IDX shadow register: vaddr = %p, paddr = %#x\n",
  390. indent + 8, " ",
  391. pdev->rx_ring.alloc_idx.vaddr, pdev->rx_ring.alloc_idx.paddr);
  392. cdf_print("%*sSW enqueue idx= %d, SW dequeue idx: desc= %d, buf= %d\n",
  393. indent + 8, " ", *pdev->rx_ring.alloc_idx.vaddr,
  394. pdev->rx_ring.sw_rd_idx.msdu_desc,
  395. pdev->rx_ring.sw_rd_idx.msdu_payld);
  396. }
  397. #endif
  398. /* Disable ASPM : Disable PCIe low power */
  399. void htt_htc_disable_aspm(void)
  400. {
  401. htc_disable_aspm();
  402. }
  403. #ifdef IPA_OFFLOAD
  404. /**
  405. * htt_ipa_uc_attach() - Allocate UC data path resources
  406. * @pdev: handle to the HTT instance
  407. *
  408. * Return: 0 success
  409. * none 0 fail
  410. */
  411. int htt_ipa_uc_attach(struct htt_pdev_t *pdev)
  412. {
  413. int error;
  414. /* TX resource attach */
  415. error = htt_tx_ipa_uc_attach(
  416. pdev,
  417. ol_cfg_ipa_uc_tx_buf_size(pdev->ctrl_pdev),
  418. ol_cfg_ipa_uc_tx_max_buf_cnt(pdev->ctrl_pdev),
  419. ol_cfg_ipa_uc_tx_partition_base(pdev->ctrl_pdev));
  420. if (error) {
  421. cdf_print("HTT IPA UC TX attach fail code %d\n", error);
  422. HTT_ASSERT0(0);
  423. return error;
  424. }
  425. /* RX resource attach */
  426. error = htt_rx_ipa_uc_attach(
  427. pdev,
  428. ol_cfg_ipa_uc_rx_ind_ring_size(pdev->ctrl_pdev));
  429. if (error) {
  430. cdf_print("HTT IPA UC RX attach fail code %d\n", error);
  431. htt_tx_ipa_uc_detach(pdev);
  432. HTT_ASSERT0(0);
  433. return error;
  434. }
  435. return 0; /* success */
  436. }
  437. /**
  438. * htt_ipa_uc_attach() - Remove UC data path resources
  439. * @pdev: handle to the HTT instance
  440. *
  441. * Return: None
  442. */
  443. void htt_ipa_uc_detach(struct htt_pdev_t *pdev)
  444. {
  445. /* TX IPA micro controller detach */
  446. htt_tx_ipa_uc_detach(pdev);
  447. /* RX IPA micro controller detach */
  448. htt_rx_ipa_uc_detach(pdev);
  449. }
  450. /**
  451. * htt_ipa_uc_get_resource() - Get uc resource from htt and lower layer
  452. * @pdev: handle to the HTT instance
  453. * @ce_sr_base_paddr: copy engine source ring base physical address
  454. * @ce_sr_ring_size: copy engine source ring size
  455. * @ce_reg_paddr: copy engine register physical address
  456. * @tx_comp_ring_base_paddr: tx comp ring base physical address
  457. * @tx_comp_ring_size: tx comp ring size
  458. * @tx_num_alloc_buffer: number of allocated tx buffer
  459. * @rx_rdy_ring_base_paddr: rx ready ring base physical address
  460. * @rx_rdy_ring_size: rx ready ring size
  461. * @rx_proc_done_idx_paddr: rx process done index physical address
  462. * @rx_proc_done_idx_vaddr: rx process done index virtual address
  463. * @rx2_rdy_ring_base_paddr: rx done ring base physical address
  464. * @rx2_rdy_ring_size: rx done ring size
  465. * @rx2_proc_done_idx_paddr: rx done index physical address
  466. * @rx2_proc_done_idx_vaddr: rx done index virtual address
  467. *
  468. * Return: 0 success
  469. */
  470. int
  471. htt_ipa_uc_get_resource(htt_pdev_handle pdev,
  472. cdf_dma_addr_t *ce_sr_base_paddr,
  473. uint32_t *ce_sr_ring_size,
  474. cdf_dma_addr_t *ce_reg_paddr,
  475. cdf_dma_addr_t *tx_comp_ring_base_paddr,
  476. uint32_t *tx_comp_ring_size,
  477. uint32_t *tx_num_alloc_buffer,
  478. cdf_dma_addr_t *rx_rdy_ring_base_paddr,
  479. uint32_t *rx_rdy_ring_size,
  480. cdf_dma_addr_t *rx_proc_done_idx_paddr,
  481. void **rx_proc_done_idx_vaddr,
  482. cdf_dma_addr_t *rx2_rdy_ring_base_paddr,
  483. uint32_t *rx2_rdy_ring_size,
  484. cdf_dma_addr_t *rx2_proc_done_idx_paddr,
  485. void **rx2_proc_done_idx_vaddr)
  486. {
  487. /* Release allocated resource to client */
  488. *tx_comp_ring_base_paddr =
  489. pdev->ipa_uc_tx_rsc.tx_comp_base.paddr;
  490. *tx_comp_ring_size =
  491. (uint32_t) ol_cfg_ipa_uc_tx_max_buf_cnt(pdev->ctrl_pdev);
  492. *tx_num_alloc_buffer = (uint32_t) pdev->ipa_uc_tx_rsc.alloc_tx_buf_cnt;
  493. *rx_rdy_ring_base_paddr =
  494. pdev->ipa_uc_rx_rsc.rx_ind_ring_base.paddr;
  495. *rx_rdy_ring_size = (uint32_t) pdev->ipa_uc_rx_rsc.rx_ind_ring_size;
  496. *rx_proc_done_idx_paddr =
  497. pdev->ipa_uc_rx_rsc.rx_ipa_prc_done_idx.paddr;
  498. *rx_proc_done_idx_vaddr =
  499. (void *)pdev->ipa_uc_rx_rsc.rx_ipa_prc_done_idx.vaddr;
  500. *rx2_rdy_ring_base_paddr =
  501. pdev->ipa_uc_rx_rsc.rx2_ind_ring_base.paddr;
  502. *rx2_rdy_ring_size = (uint32_t) pdev->ipa_uc_rx_rsc.rx2_ind_ring_size;
  503. *rx2_proc_done_idx_paddr =
  504. pdev->ipa_uc_rx_rsc.rx2_ipa_prc_done_idx.paddr;
  505. *rx2_proc_done_idx_vaddr =
  506. (void *)pdev->ipa_uc_rx_rsc.rx2_ipa_prc_done_idx.vaddr;
  507. /* Get copy engine, bus resource */
  508. htc_ipa_get_ce_resource(pdev->htc_pdev,
  509. ce_sr_base_paddr,
  510. ce_sr_ring_size, ce_reg_paddr);
  511. return 0;
  512. }
  513. /**
  514. * htt_ipa_uc_set_doorbell_paddr() - Propagate IPA doorbell address
  515. * @pdev: handle to the HTT instance
  516. * @ipa_uc_tx_doorbell_paddr: TX doorbell base physical address
  517. * @ipa_uc_rx_doorbell_paddr: RX doorbell base physical address
  518. *
  519. * Return: 0 success
  520. */
  521. int
  522. htt_ipa_uc_set_doorbell_paddr(htt_pdev_handle pdev,
  523. cdf_dma_addr_t ipa_uc_tx_doorbell_paddr,
  524. cdf_dma_addr_t ipa_uc_rx_doorbell_paddr)
  525. {
  526. pdev->ipa_uc_tx_rsc.tx_comp_idx_paddr = ipa_uc_tx_doorbell_paddr;
  527. pdev->ipa_uc_rx_rsc.rx_rdy_idx_paddr = ipa_uc_rx_doorbell_paddr;
  528. return 0;
  529. }
  530. #endif /* IPA_OFFLOAD */