cdp_txrx_ipa.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578
  1. /*
  2. * Copyright (c) 2016-2018 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 cdp_txrx_ipa.h
  20. * @brief Define the host data path IP Acceleraor API functions
  21. */
  22. #ifndef _CDP_TXRX_IPA_H_
  23. #define _CDP_TXRX_IPA_H_
  24. #ifdef IPA_OFFLOAD
  25. #ifdef CONFIG_IPA_WDI_UNIFIED_API
  26. #include <qdf_ipa_wdi3.h>
  27. #else
  28. #include <qdf_ipa.h>
  29. #endif
  30. #include <cdp_txrx_cmn.h>
  31. #include "cdp_txrx_handle.h"
  32. /**
  33. * cdp_ipa_get_resource() - Get allocated WLAN resources for IPA data path
  34. * @soc - data path soc handle
  35. * @pdev - device instance pointer
  36. *
  37. * Get allocated WLAN resources for IPA data path
  38. *
  39. * return QDF_STATUS_SUCCESS
  40. */
  41. static inline QDF_STATUS
  42. cdp_ipa_get_resource(ol_txrx_soc_handle soc, struct cdp_pdev *pdev)
  43. {
  44. if (!soc || !soc->ops || !soc->ops->ipa_ops || !pdev) {
  45. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  46. "%s invalid instance", __func__);
  47. return QDF_STATUS_E_FAILURE;
  48. }
  49. if (soc->ops->ipa_ops->ipa_get_resource)
  50. return soc->ops->ipa_ops->ipa_get_resource(pdev);
  51. return QDF_STATUS_SUCCESS;
  52. }
  53. /**
  54. * cdp_ipa_set_doorbell_paddr() - give IPA db paddr to FW
  55. * @soc - data path soc handle
  56. * @pdev - device instance pointer
  57. *
  58. * give IPA db paddr to FW
  59. *
  60. * return QDF_STATUS_SUCCESS
  61. */
  62. static inline QDF_STATUS
  63. cdp_ipa_set_doorbell_paddr(ol_txrx_soc_handle soc, struct cdp_pdev *pdev)
  64. {
  65. if (!soc || !soc->ops || !soc->ops->ipa_ops || !pdev) {
  66. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  67. "%s invalid instance", __func__);
  68. return QDF_STATUS_E_FAILURE;
  69. }
  70. if (soc->ops->ipa_ops->ipa_set_doorbell_paddr)
  71. return soc->ops->ipa_ops->ipa_set_doorbell_paddr(pdev);
  72. return QDF_STATUS_SUCCESS;
  73. }
  74. /**
  75. * cdp_ipa_set_active() - activate/de-ctivate IPA offload path
  76. * @soc - data path soc handle
  77. * @pdev - device instance pointer
  78. * @uc_active - activate or de-activate
  79. * @is_tx - toggle tx or rx data path
  80. *
  81. * activate/de-ctivate IPA offload path
  82. *
  83. * return QDF_STATUS_SUCCESS
  84. */
  85. static inline QDF_STATUS
  86. cdp_ipa_set_active(ol_txrx_soc_handle soc, struct cdp_pdev *pdev,
  87. bool uc_active, bool is_tx)
  88. {
  89. if (!soc || !soc->ops || !soc->ops->ipa_ops || !pdev) {
  90. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  91. "%s invalid instance", __func__);
  92. return QDF_STATUS_E_FAILURE;
  93. }
  94. if (soc->ops->ipa_ops->ipa_set_active)
  95. return soc->ops->ipa_ops->ipa_set_active(pdev, uc_active,
  96. is_tx);
  97. return QDF_STATUS_SUCCESS;
  98. }
  99. /**
  100. * cdp_ipa_op_response() - event handler from FW
  101. * @soc - data path soc handle
  102. * @pdev - device instance pointer
  103. * @op_msg - event contents from firmware
  104. *
  105. * event handler from FW
  106. *
  107. * return QDF_STATUS_SUCCESS
  108. */
  109. static inline QDF_STATUS
  110. cdp_ipa_op_response(ol_txrx_soc_handle soc, struct cdp_pdev *pdev,
  111. uint8_t *op_msg)
  112. {
  113. if (!soc || !soc->ops || !soc->ops->ipa_ops || !pdev) {
  114. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  115. "%s invalid instance", __func__);
  116. return QDF_STATUS_E_FAILURE;
  117. }
  118. if (soc->ops->ipa_ops->ipa_op_response)
  119. return soc->ops->ipa_ops->ipa_op_response(pdev, op_msg);
  120. return QDF_STATUS_SUCCESS;
  121. }
  122. /**
  123. * cdp_ipa_register_op_cb() - register event handler function pointer
  124. * @soc - data path soc handle
  125. * @pdev - device instance pointer
  126. * @op_cb - event handler callback function pointer
  127. * @usr_ctxt - user context to registered
  128. *
  129. * register event handler function pointer
  130. *
  131. * return QDF_STATUS_SUCCESS
  132. */
  133. static inline QDF_STATUS
  134. cdp_ipa_register_op_cb(ol_txrx_soc_handle soc, struct cdp_pdev *pdev,
  135. ipa_uc_op_cb_type op_cb, void *usr_ctxt)
  136. {
  137. if (!soc || !soc->ops || !soc->ops->ipa_ops || !pdev) {
  138. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  139. "%s invalid instance", __func__);
  140. return QDF_STATUS_E_FAILURE;
  141. }
  142. if (soc->ops->ipa_ops->ipa_register_op_cb)
  143. return soc->ops->ipa_ops->ipa_register_op_cb(pdev, op_cb,
  144. usr_ctxt);
  145. return QDF_STATUS_SUCCESS;
  146. }
  147. /**
  148. * cdp_ipa_get_stat() - get IPA data path stats from FW
  149. * @soc - data path soc handle
  150. * @pdev - device instance pointer
  151. *
  152. * get IPA data path stats from FW async
  153. *
  154. * return QDF_STATUS_SUCCESS
  155. */
  156. static inline QDF_STATUS
  157. cdp_ipa_get_stat(ol_txrx_soc_handle soc, struct cdp_pdev *pdev)
  158. {
  159. if (!soc || !soc->ops || !soc->ops->ipa_ops || !pdev) {
  160. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  161. "%s invalid instance", __func__);
  162. return QDF_STATUS_E_FAILURE;
  163. }
  164. if (soc->ops->ipa_ops->ipa_get_stat)
  165. return soc->ops->ipa_ops->ipa_get_stat(pdev);
  166. return QDF_STATUS_SUCCESS;
  167. }
  168. /**
  169. * cdp_tx_send_ipa_data_frame() - send IPA data frame
  170. * @vdev: vdev
  171. * @skb: skb
  172. *
  173. * Return: skb/ NULL is for success
  174. */
  175. static inline qdf_nbuf_t cdp_ipa_tx_send_data_frame(ol_txrx_soc_handle soc,
  176. struct cdp_vdev *vdev, qdf_nbuf_t skb)
  177. {
  178. if (!soc || !soc->ops || !soc->ops->ipa_ops || !vdev) {
  179. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  180. "%s invalid instance", __func__);
  181. return skb;
  182. }
  183. if (soc->ops->ipa_ops->ipa_tx_data_frame)
  184. return soc->ops->ipa_ops->ipa_tx_data_frame(vdev, skb);
  185. return skb;
  186. }
  187. /**
  188. * cdp_ipa_set_uc_tx_partition_base() - set tx packet partition base
  189. * @pdev: physical device instance
  190. * @value: partition base value
  191. *
  192. * Return: QDF_STATUS
  193. */
  194. static inline QDF_STATUS
  195. cdp_ipa_set_uc_tx_partition_base(ol_txrx_soc_handle soc,
  196. struct cdp_cfg *cfg_pdev, uint32_t value)
  197. {
  198. if (!soc || !soc->ops || !soc->ops->ipa_ops || !cfg_pdev) {
  199. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  200. "%s invalid instance", __func__);
  201. return QDF_STATUS_E_FAILURE;
  202. }
  203. if (soc->ops->ipa_ops->ipa_set_uc_tx_partition_base)
  204. soc->ops->ipa_ops->ipa_set_uc_tx_partition_base(cfg_pdev,
  205. value);
  206. return QDF_STATUS_SUCCESS;
  207. }
  208. #ifdef FEATURE_METERING
  209. /**
  210. * cdp_ipa_uc_get_share_stats() - get Tx/Rx byte stats from FW
  211. * @pdev: physical device instance
  212. * @value: reset stats
  213. *
  214. * Return: QDF_STATUS
  215. */
  216. static inline QDF_STATUS
  217. cdp_ipa_uc_get_share_stats(ol_txrx_soc_handle soc,
  218. struct cdp_pdev *pdev, uint8_t value)
  219. {
  220. if (!soc || !soc->ops || !soc->ops->ipa_ops || !pdev) {
  221. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  222. "%s invalid instance", __func__);
  223. return QDF_STATUS_E_FAILURE;
  224. }
  225. if (soc->ops->ipa_ops->ipa_uc_get_share_stats)
  226. return soc->ops->ipa_ops->ipa_uc_get_share_stats(pdev,
  227. value);
  228. return QDF_STATUS_SUCCESS;
  229. }
  230. /**
  231. * cdp_ipa_uc_set_quota() - set quota limit to FW
  232. * @pdev: physical device instance
  233. * @value: quota limit bytes
  234. *
  235. * Return: QDF_STATUS
  236. */
  237. static inline QDF_STATUS
  238. cdp_ipa_uc_set_quota(ol_txrx_soc_handle soc,
  239. struct cdp_pdev *pdev, uint64_t value)
  240. {
  241. if (!soc || !soc->ops || !soc->ops->ipa_ops || !pdev) {
  242. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  243. "%s invalid instance", __func__);
  244. return QDF_STATUS_E_FAILURE;
  245. }
  246. if (soc->ops->ipa_ops->ipa_uc_set_quota)
  247. return soc->ops->ipa_ops->ipa_uc_set_quota(pdev,
  248. value);
  249. return QDF_STATUS_SUCCESS;
  250. }
  251. #endif
  252. /**
  253. * cdp_ipa_enable_autonomy() - Enable autonomy RX data path
  254. * @soc: data path soc handle
  255. * @pdev: handle to the device instance
  256. *
  257. * IPA Data path is enabled and resumed.
  258. * All autonomy data path elements are ready to deliver packet
  259. * All RX packet should routed to IPA_REO ring, then IPA can receive packet
  260. * from WLAN
  261. *
  262. * Return: QDF_STATUS
  263. */
  264. static inline QDF_STATUS
  265. cdp_ipa_enable_autonomy(ol_txrx_soc_handle soc, struct cdp_pdev *pdev)
  266. {
  267. if (!soc || !soc->ops || !soc->ops->ipa_ops || !pdev) {
  268. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  269. "%s invalid instance", __func__);
  270. return QDF_STATUS_E_FAILURE;
  271. }
  272. if (soc->ops->ipa_ops->ipa_enable_autonomy)
  273. return soc->ops->ipa_ops->ipa_enable_autonomy(pdev);
  274. return QDF_STATUS_SUCCESS;
  275. }
  276. /**
  277. * cdp_ipa_disable_autonomy() - Disable autonomy RX data path
  278. * @soc: data path soc handle
  279. * @pdev: handle to the device instance
  280. *
  281. * IPA Data path is enabled and resumed.
  282. * All autonomy datapath elements are ready to deliver packet
  283. * All RX packet should routed to IPA_REO ring, then IPA can receive packet
  284. * from WLAN
  285. *
  286. * Return: QDF_STATUS
  287. */
  288. static inline QDF_STATUS
  289. cdp_ipa_disable_autonomy(ol_txrx_soc_handle soc, struct cdp_pdev *pdev)
  290. {
  291. if (!soc || !soc->ops || !soc->ops->ipa_ops || !pdev) {
  292. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  293. "%s invalid instance", __func__);
  294. return QDF_STATUS_E_FAILURE;
  295. }
  296. if (soc->ops->ipa_ops->ipa_enable_autonomy)
  297. return soc->ops->ipa_ops->ipa_disable_autonomy(pdev);
  298. return QDF_STATUS_SUCCESS;
  299. }
  300. #ifdef CONFIG_IPA_WDI_UNIFIED_API
  301. /**
  302. * cdp_ipa_setup() - Setup and connect IPA pipes
  303. * @soc: data path soc handle
  304. * @pdev: handle to the device instance
  305. * @ipa_i2w_cb: IPA to WLAN callback
  306. * @ipa_w2i_cb: WLAN to IPA callback
  307. * @ipa_wdi_meter_notifier_cb: IPA WDI metering callback
  308. * @ipa_desc_size: IPA descriptor size
  309. * @ipa_priv: handle to the HTT instance
  310. * @is_rm_enabled: Is IPA RM enabled or not
  311. * @tx_pipe_handle: pointer to Tx pipe handle
  312. * @rx_pipe_handle: pointer to Rx pipe handle
  313. * @is_smmu_enabled: Is SMMU enabled or not
  314. * @sys_in: parameters to setup sys pipe in mcc mode
  315. *
  316. * Return: QDF_STATUS
  317. */
  318. static inline QDF_STATUS
  319. cdp_ipa_setup(ol_txrx_soc_handle soc, struct cdp_pdev *pdev, void *ipa_i2w_cb,
  320. void *ipa_w2i_cb, void *ipa_wdi_meter_notifier_cb,
  321. uint32_t ipa_desc_size, void *ipa_priv, bool is_rm_enabled,
  322. uint32_t *tx_pipe_handle, uint32_t *rx_pipe_handle,
  323. bool is_smmu_enabled, qdf_ipa_sys_connect_params_t *sys_in)
  324. {
  325. if (!soc || !soc->ops || !soc->ops->ipa_ops || !pdev) {
  326. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  327. "%s invalid instance", __func__);
  328. return QDF_STATUS_E_FAILURE;
  329. }
  330. if (soc->ops->ipa_ops->ipa_setup)
  331. return soc->ops->ipa_ops->ipa_setup(pdev, ipa_i2w_cb,
  332. ipa_w2i_cb,
  333. ipa_wdi_meter_notifier_cb,
  334. ipa_desc_size, ipa_priv,
  335. is_rm_enabled,
  336. tx_pipe_handle,
  337. rx_pipe_handle,
  338. is_smmu_enabled,
  339. sys_in);
  340. return QDF_STATUS_SUCCESS;
  341. }
  342. #else /* CONFIG_IPA_WDI_UNIFIED_API */
  343. /**
  344. * cdp_ipa_setup() - Setup and connect IPA pipes
  345. * @soc: data path soc handle
  346. * @pdev: handle to the device instance
  347. * @ipa_i2w_cb: IPA to WLAN callback
  348. * @ipa_w2i_cb: WLAN to IPA callback
  349. * @ipa_wdi_meter_notifier_cb: IPA WDI metering callback
  350. * @ipa_desc_size: IPA descriptor size
  351. * @ipa_priv: handle to the HTT instance
  352. * @is_rm_enabled: Is IPA RM enabled or not
  353. * @tx_pipe_handle: pointer to Tx pipe handle
  354. * @rx_pipe_handle: pointer to Rx pipe handle
  355. *
  356. * Return: QDF_STATUS
  357. */
  358. static inline QDF_STATUS
  359. cdp_ipa_setup(ol_txrx_soc_handle soc, struct cdp_pdev *pdev, void *ipa_i2w_cb,
  360. void *ipa_w2i_cb, void *ipa_wdi_meter_notifier_cb,
  361. uint32_t ipa_desc_size, void *ipa_priv, bool is_rm_enabled,
  362. uint32_t *tx_pipe_handle, uint32_t *rx_pipe_handle)
  363. {
  364. if (!soc || !soc->ops || !soc->ops->ipa_ops || !pdev) {
  365. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  366. "%s invalid instance", __func__);
  367. return QDF_STATUS_E_FAILURE;
  368. }
  369. if (soc->ops->ipa_ops->ipa_setup)
  370. return soc->ops->ipa_ops->ipa_setup(pdev, ipa_i2w_cb,
  371. ipa_w2i_cb,
  372. ipa_wdi_meter_notifier_cb,
  373. ipa_desc_size, ipa_priv,
  374. is_rm_enabled,
  375. tx_pipe_handle,
  376. rx_pipe_handle);
  377. return QDF_STATUS_SUCCESS;
  378. }
  379. #endif /* CONFIG_IPA_WDI_UNIFIED_API */
  380. /**
  381. * cdp_ipa_cleanup() - Disconnect IPA pipes
  382. * @soc: data path soc handle
  383. * @tx_pipe_handle: Tx pipe handle
  384. * @rx_pipe_handle: Rx pipe handle
  385. *
  386. * Return: QDF_STATUS
  387. */
  388. static inline QDF_STATUS
  389. cdp_ipa_cleanup(ol_txrx_soc_handle soc, uint32_t tx_pipe_handle,
  390. uint32_t rx_pipe_handle)
  391. {
  392. if (!soc || !soc->ops || !soc->ops->ipa_ops) {
  393. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  394. "%s invalid instance", __func__);
  395. return QDF_STATUS_E_FAILURE;
  396. }
  397. if (soc->ops->ipa_ops->ipa_cleanup)
  398. return soc->ops->ipa_ops->ipa_cleanup(tx_pipe_handle,
  399. rx_pipe_handle);
  400. return QDF_STATUS_SUCCESS;
  401. }
  402. /**
  403. * cdp_ipa_setup_iface() - Setup IPA header and register interface
  404. * @soc: data path soc handle
  405. * @ifname: Interface name
  406. * @mac_addr: Interface MAC address
  407. * @prod_client: IPA prod client type
  408. * @cons_client: IPA cons client type
  409. * @session_id: Session ID
  410. * @is_ipv6_enabled: Is IPV6 enabled or not
  411. *
  412. * Return: QDF_STATUS
  413. */
  414. static inline QDF_STATUS
  415. cdp_ipa_setup_iface(ol_txrx_soc_handle soc, char *ifname, uint8_t *mac_addr,
  416. qdf_ipa_client_type_t prod_client,
  417. qdf_ipa_client_type_t cons_client,
  418. uint8_t session_id, bool is_ipv6_enabled)
  419. {
  420. if (!soc || !soc->ops || !soc->ops->ipa_ops) {
  421. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  422. "%s invalid instance", __func__);
  423. return QDF_STATUS_E_FAILURE;
  424. }
  425. if (soc->ops->ipa_ops->ipa_setup_iface)
  426. return soc->ops->ipa_ops->ipa_setup_iface(ifname, mac_addr,
  427. prod_client,
  428. cons_client,
  429. session_id,
  430. is_ipv6_enabled);
  431. return QDF_STATUS_SUCCESS;
  432. }
  433. /**
  434. * cdp_ipa_cleanup_iface() - Cleanup IPA header and deregister interface
  435. * @soc: data path soc handle
  436. * @ifname: Interface name
  437. * @is_ipv6_enabled: Is IPV6 enabled or not
  438. *
  439. * Return: QDF_STATUS
  440. */
  441. static inline QDF_STATUS
  442. cdp_ipa_cleanup_iface(ol_txrx_soc_handle soc, char *ifname,
  443. bool is_ipv6_enabled)
  444. {
  445. if (!soc || !soc->ops || !soc->ops->ipa_ops) {
  446. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  447. "%s invalid instance", __func__);
  448. return QDF_STATUS_E_FAILURE;
  449. }
  450. if (soc->ops->ipa_ops->ipa_cleanup_iface)
  451. return soc->ops->ipa_ops->ipa_cleanup_iface(ifname,
  452. is_ipv6_enabled);
  453. return QDF_STATUS_SUCCESS;
  454. }
  455. /**
  456. * cdp_ipa_uc_enable_pipes() - Enable and resume traffic on Tx/Rx pipes
  457. * @soc: data path soc handle
  458. * @pdev: handle to the device instance
  459. *
  460. * Return: QDF_STATUS
  461. */
  462. static inline QDF_STATUS
  463. cdp_ipa_enable_pipes(ol_txrx_soc_handle soc, struct cdp_pdev *pdev)
  464. {
  465. if (!soc || !soc->ops || !soc->ops->ipa_ops || !pdev) {
  466. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  467. "%s invalid instance", __func__);
  468. return QDF_STATUS_E_FAILURE;
  469. }
  470. if (soc->ops->ipa_ops->ipa_enable_pipes)
  471. return soc->ops->ipa_ops->ipa_enable_pipes(pdev);
  472. return QDF_STATUS_SUCCESS;
  473. }
  474. /**
  475. * cdp_ipa_uc_disable_pipes() - Suspend traffic and disable Tx/Rx pipes
  476. * @soc: data path soc handle
  477. * @pdev: handle to the device instance
  478. *
  479. * Return: QDF_STATUS
  480. */
  481. static inline QDF_STATUS
  482. cdp_ipa_disable_pipes(ol_txrx_soc_handle soc, struct cdp_pdev *pdev)
  483. {
  484. if (!soc || !soc->ops || !soc->ops->ipa_ops || !pdev) {
  485. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  486. "%s invalid instance", __func__);
  487. return QDF_STATUS_E_FAILURE;
  488. }
  489. if (soc->ops->ipa_ops->ipa_disable_pipes)
  490. return soc->ops->ipa_ops->ipa_disable_pipes(pdev);
  491. return QDF_STATUS_SUCCESS;
  492. }
  493. /**
  494. * cdp_ipa_set_perf_level() - Set IPA clock bandwidth based on data rates
  495. * @soc: data path soc handle
  496. * @client: WLAN Client ID
  497. * @max_supported_bw_mbps: Maximum bandwidth needed (in Mbps)
  498. *
  499. * Return: 0 on success, negative errno on error
  500. */
  501. static inline QDF_STATUS
  502. cdp_ipa_set_perf_level(ol_txrx_soc_handle soc, int client,
  503. uint32_t max_supported_bw_mbps)
  504. {
  505. if (!soc || !soc->ops || !soc->ops->ipa_ops) {
  506. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  507. "%s invalid instance", __func__);
  508. return QDF_STATUS_E_FAILURE;
  509. }
  510. if (soc->ops->ipa_ops->ipa_set_perf_level)
  511. return soc->ops->ipa_ops->ipa_set_perf_level(client,
  512. max_supported_bw_mbps);
  513. return QDF_STATUS_SUCCESS;
  514. }
  515. #endif /* IPA_OFFLOAD */
  516. #endif /* _CDP_TXRX_IPA_H_ */