htt.c 17 KB

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