cdp_txrx_lro.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*
  2. * Copyright (c) 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 cdp_txrx_lro.h
  28. * @brief Define the host data path Large Receive Offload API
  29. * functions
  30. */
  31. #ifndef _CDP_TXRX_LRO_H_
  32. #define _CDP_TXRX_LRO_H_
  33. /**
  34. * cdp_register_lro_flush_cb() - register lro flsu cb function pointer
  35. * @soc - data path soc handle
  36. * @pdev - device instance pointer
  37. *
  38. * register lro flush callback function pointer
  39. *
  40. * return none
  41. */
  42. static inline void cdp_register_lro_flush_cb(ol_txrx_soc_handle soc,
  43. void (lro_flush_cb)(void *), void *(lro_init_cb)(void))
  44. {
  45. if (!soc || !soc->ops || !soc->ops->lro_ops) {
  46. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  47. "%s invalid instance", __func__);
  48. return;
  49. }
  50. if (soc->ops->lro_ops->register_lro_flush_cb)
  51. return soc->ops->lro_ops->register_lro_flush_cb(lro_flush_cb,
  52. lro_init_cb);
  53. return;
  54. }
  55. /**
  56. * cdp_deregister_lro_flush_cb() - deregister lro flsu cb function pointer
  57. * @soc - data path soc handle
  58. *
  59. * deregister lro flush callback function pointer
  60. *
  61. * return none
  62. */
  63. static inline void cdp_deregister_lro_flush_cb(ol_txrx_soc_handle soc,
  64. void (lro_deinit_cb)(void *))
  65. {
  66. if (!soc || !soc->ops || !soc->ops->lro_ops) {
  67. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  68. "%s invalid instance", __func__);
  69. return;
  70. }
  71. if (soc->ops->lro_ops->deregister_lro_flush_cb)
  72. return soc->ops->lro_ops->deregister_lro_flush_cb(
  73. lro_deinit_cb);
  74. return;
  75. }
  76. #endif /* _CDP_TXRX_LRO_H_ */