cdp_txrx_pmf.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Copyright (c) 2016 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. #ifndef _CDP_TXRX_PMF_H_
  19. #define _CDP_TXRX_PMF_H_
  20. /**
  21. * cdp_get_pn_info() - Returns pn info from peer
  22. * @soc - data path soc handle
  23. * @peer: handle to peer
  24. * @last_pn_valid: return last_rmf_pn_valid value from peer.
  25. * @last_pn: return last_rmf_pn value from peer.
  26. * @rmf_pn_replays: return rmf_pn_replays value from peer.
  27. *
  28. * Return: NONE
  29. */
  30. static inline void
  31. cdp_get_pn_info(ol_txrx_soc_handle soc, void *peer, uint8_t **last_pn_valid,
  32. uint64_t **last_pn, uint32_t **rmf_pn_replays)
  33. {
  34. if (!soc || !soc->ops || !soc->ops->pmf_ops) {
  35. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
  36. "%s invalid instance", __func__);
  37. return;
  38. }
  39. if (soc->ops->pmf_ops->get_pn_info)
  40. return soc->ops->pmf_ops->get_pn_info(
  41. peer, last_pn_valid, last_pn, rmf_pn_replays);
  42. return;
  43. }
  44. #endif /* _CDP_TXRX_PMF_H_ */