cdp_txrx_misc.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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_misc.h
  28. * @brief Define the host data path miscelleneous API functions
  29. * called by the host control SW and the OS interface module
  30. */
  31. #ifndef _CDP_TXRX_MISC_H_
  32. #define _CDP_TXRX_MISC_H_
  33. /**
  34. * @enum ol_tx_spec
  35. * @brief indicate what non-standard transmission actions to apply
  36. * @details
  37. * Indicate one or more of the following:
  38. * - The tx frame already has a complete 802.11 header.
  39. * Thus, skip 802.3/native-WiFi to 802.11 header encapsulation and
  40. * A-MSDU aggregation.
  41. * - The tx frame should not be aggregated (A-MPDU or A-MSDU)
  42. * - The tx frame is already encrypted - don't attempt encryption.
  43. * - The tx frame is a segment of a TCP jumbo frame.
  44. * - This tx frame should not be unmapped and freed by the txrx layer
  45. * after transmission, but instead given to a registered tx completion
  46. * callback.
  47. * More than one of these specification can apply, though typically
  48. * only a single specification is applied to a tx frame.
  49. * A compound specification can be created, as a bit-OR of these
  50. * specifications.
  51. */
  52. enum ol_tx_spec {
  53. OL_TX_SPEC_STD = 0x0, /* do regular processing */
  54. OL_TX_SPEC_RAW = 0x1, /* skip encap + A-MSDU aggr */
  55. OL_TX_SPEC_NO_AGGR = 0x2, /* skip encap + all aggr */
  56. OL_TX_SPEC_NO_ENCRYPT = 0x4, /* skip encap + encrypt */
  57. OL_TX_SPEC_TSO = 0x8, /* TCP segmented */
  58. OL_TX_SPEC_NWIFI_NO_ENCRYPT = 0x10, /* skip encrypt for nwifi */
  59. OL_TX_SPEC_NO_FREE = 0x20, /* give to cb rather than free */
  60. };
  61. /**
  62. * ol_tx_non_std() - Allow the control-path SW to send data frames
  63. *
  64. * @data_vdev - which vdev should transmit the tx data frames
  65. * @tx_spec - what non-standard handling to apply to the tx data frames
  66. * @msdu_list - NULL-terminated list of tx MSDUs
  67. *
  68. * Generally, all tx data frames come from the OS shim into the txrx layer.
  69. * However, there are rare cases such as TDLS messaging where the UMAC
  70. * control-path SW creates tx data frames.
  71. * This UMAC SW can call this function to provide the tx data frames to
  72. * the txrx layer.
  73. * The UMAC SW can request a callback for these data frames after their
  74. * transmission completes, by using the ol_txrx_data_tx_cb_set function
  75. * to register a tx completion callback, and by specifying
  76. * ol_tx_spec_no_free as the tx_spec arg when giving the frames to
  77. * ol_tx_non_std.
  78. * The MSDUs need to have the appropriate L2 header type (802.3 vs. 802.11),
  79. * as specified by ol_cfg_frame_type().
  80. *
  81. * Return: null - success, skb - failure
  82. */
  83. qdf_nbuf_t ol_tx_non_std(ol_txrx_vdev_handle vdev,
  84. enum ol_tx_spec tx_spec, qdf_nbuf_t msdu_list);
  85. /**
  86. * ol_txrx_update_ibss_vdev_heart_beat_timer_of_vdev() - Update ibss vdev heart
  87. * beat timer
  88. * @vdev: vdev handle
  89. * @timer_value_sec: new heart beat timer value
  90. *
  91. * Return: Old timer value set in vdev.
  92. */
  93. uint16_t ol_txrx_set_ibss_vdev_heart_beat_timer(ol_txrx_vdev_handle vdev,
  94. uint16_t timer_value_sec);
  95. #endif /* _CDP_TXRX_MISC_H_ */