mac.h 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /* SPDX-License-Identifier: BSD-3-Clause-Clear */
  2. /*
  3. * Copyright (c) 2018-2019 The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef ATH11K_MAC_H
  6. #define ATH11K_MAC_H
  7. #include <net/mac80211.h>
  8. #include <net/cfg80211.h>
  9. #include "wmi.h"
  10. struct ath11k;
  11. struct ath11k_base;
  12. struct ath11k_generic_iter {
  13. struct ath11k *ar;
  14. int ret;
  15. };
  16. /* number of failed packets (20 packets with 16 sw reties each) */
  17. #define ATH11K_KICKOUT_THRESHOLD (20 * 16)
  18. /* Use insanely high numbers to make sure that the firmware implementation
  19. * won't start, we have the same functionality already in hostapd. Unit
  20. * is seconds.
  21. */
  22. #define ATH11K_KEEPALIVE_MIN_IDLE 3747
  23. #define ATH11K_KEEPALIVE_MAX_IDLE 3895
  24. #define ATH11K_KEEPALIVE_MAX_UNRESPONSIVE 3900
  25. #define WMI_HOST_RC_DS_FLAG 0x01
  26. #define WMI_HOST_RC_CW40_FLAG 0x02
  27. #define WMI_HOST_RC_SGI_FLAG 0x04
  28. #define WMI_HOST_RC_HT_FLAG 0x08
  29. #define WMI_HOST_RC_RTSCTS_FLAG 0x10
  30. #define WMI_HOST_RC_TX_STBC_FLAG 0x20
  31. #define WMI_HOST_RC_RX_STBC_FLAG 0xC0
  32. #define WMI_HOST_RC_RX_STBC_FLAG_S 6
  33. #define WMI_HOST_RC_WEP_TKIP_FLAG 0x100
  34. #define WMI_HOST_RC_TS_FLAG 0x200
  35. #define WMI_HOST_RC_UAPSD_FLAG 0x400
  36. #define WMI_HT_CAP_ENABLED 0x0001
  37. #define WMI_HT_CAP_HT20_SGI 0x0002
  38. #define WMI_HT_CAP_DYNAMIC_SMPS 0x0004
  39. #define WMI_HT_CAP_TX_STBC 0x0008
  40. #define WMI_HT_CAP_TX_STBC_MASK_SHIFT 3
  41. #define WMI_HT_CAP_RX_STBC 0x0030
  42. #define WMI_HT_CAP_RX_STBC_MASK_SHIFT 4
  43. #define WMI_HT_CAP_LDPC 0x0040
  44. #define WMI_HT_CAP_L_SIG_TXOP_PROT 0x0080
  45. #define WMI_HT_CAP_MPDU_DENSITY 0x0700
  46. #define WMI_HT_CAP_MPDU_DENSITY_MASK_SHIFT 8
  47. #define WMI_HT_CAP_HT40_SGI 0x0800
  48. #define WMI_HT_CAP_RX_LDPC 0x1000
  49. #define WMI_HT_CAP_TX_LDPC 0x2000
  50. #define WMI_HT_CAP_IBF_BFER 0x4000
  51. /* These macros should be used when we wish to advertise STBC support for
  52. * only 1SS or 2SS or 3SS.
  53. */
  54. #define WMI_HT_CAP_RX_STBC_1SS 0x0010
  55. #define WMI_HT_CAP_RX_STBC_2SS 0x0020
  56. #define WMI_HT_CAP_RX_STBC_3SS 0x0030
  57. #define WMI_HT_CAP_DEFAULT_ALL (WMI_HT_CAP_ENABLED | \
  58. WMI_HT_CAP_HT20_SGI | \
  59. WMI_HT_CAP_HT40_SGI | \
  60. WMI_HT_CAP_TX_STBC | \
  61. WMI_HT_CAP_RX_STBC | \
  62. WMI_HT_CAP_LDPC)
  63. #define WMI_VHT_CAP_MAX_MPDU_LEN_MASK 0x00000003
  64. #define WMI_VHT_CAP_RX_LDPC 0x00000010
  65. #define WMI_VHT_CAP_SGI_80MHZ 0x00000020
  66. #define WMI_VHT_CAP_SGI_160MHZ 0x00000040
  67. #define WMI_VHT_CAP_TX_STBC 0x00000080
  68. #define WMI_VHT_CAP_RX_STBC_MASK 0x00000300
  69. #define WMI_VHT_CAP_RX_STBC_MASK_SHIFT 8
  70. #define WMI_VHT_CAP_SU_BFER 0x00000800
  71. #define WMI_VHT_CAP_SU_BFEE 0x00001000
  72. #define WMI_VHT_CAP_MAX_CS_ANT_MASK 0x0000E000
  73. #define WMI_VHT_CAP_MAX_CS_ANT_MASK_SHIFT 13
  74. #define WMI_VHT_CAP_MAX_SND_DIM_MASK 0x00070000
  75. #define WMI_VHT_CAP_MAX_SND_DIM_MASK_SHIFT 16
  76. #define WMI_VHT_CAP_MU_BFER 0x00080000
  77. #define WMI_VHT_CAP_MU_BFEE 0x00100000
  78. #define WMI_VHT_CAP_MAX_AMPDU_LEN_EXP 0x03800000
  79. #define WMI_VHT_CAP_MAX_AMPDU_LEN_EXP_SHIT 23
  80. #define WMI_VHT_CAP_RX_FIXED_ANT 0x10000000
  81. #define WMI_VHT_CAP_TX_FIXED_ANT 0x20000000
  82. #define WMI_VHT_CAP_MAX_MPDU_LEN_11454 0x00000002
  83. /* These macros should be used when we wish to advertise STBC support for
  84. * only 1SS or 2SS or 3SS.
  85. */
  86. #define WMI_VHT_CAP_RX_STBC_1SS 0x00000100
  87. #define WMI_VHT_CAP_RX_STBC_2SS 0x00000200
  88. #define WMI_VHT_CAP_RX_STBC_3SS 0x00000300
  89. #define WMI_VHT_CAP_DEFAULT_ALL (WMI_VHT_CAP_MAX_MPDU_LEN_11454 | \
  90. WMI_VHT_CAP_SGI_80MHZ | \
  91. WMI_VHT_CAP_TX_STBC | \
  92. WMI_VHT_CAP_RX_STBC_MASK | \
  93. WMI_VHT_CAP_RX_LDPC | \
  94. WMI_VHT_CAP_MAX_AMPDU_LEN_EXP | \
  95. WMI_VHT_CAP_RX_FIXED_ANT | \
  96. WMI_VHT_CAP_TX_FIXED_ANT)
  97. /* FIXME: should these be in ieee80211.h? */
  98. #define IEEE80211_VHT_MCS_SUPPORT_0_11_MASK GENMASK(23, 16)
  99. #define IEEE80211_DISABLE_VHT_MCS_SUPPORT_0_11 BIT(24)
  100. #define WMI_MAX_SPATIAL_STREAM 3
  101. #define ATH11K_CHAN_WIDTH_NUM 8
  102. #define ATH11K_BW_NSS_MAP_ENABLE BIT(31)
  103. #define ATH11K_PEER_RX_NSS_160MHZ GENMASK(2, 0)
  104. #define ATH11K_PEER_RX_NSS_80_80MHZ GENMASK(5, 3)
  105. #define ATH11K_OBSS_PD_MAX_THRESHOLD -82
  106. #define ATH11K_OBSS_PD_NON_SRG_MAX_THRESHOLD -62
  107. #define ATH11K_OBSS_PD_THRESHOLD_IN_DBM BIT(29)
  108. #define ATH11K_OBSS_PD_SRG_EN BIT(30)
  109. #define ATH11K_OBSS_PD_NON_SRG_EN BIT(31)
  110. extern const struct htt_rx_ring_tlv_filter ath11k_mac_mon_status_filter_default;
  111. #define ATH11K_SCAN_11D_INTERVAL 600000
  112. #define ATH11K_11D_INVALID_VDEV_ID 0xFFFF
  113. void ath11k_mac_11d_scan_start(struct ath11k *ar, u32 vdev_id);
  114. void ath11k_mac_11d_scan_stop(struct ath11k *ar);
  115. void ath11k_mac_11d_scan_stop_all(struct ath11k_base *ab);
  116. void ath11k_mac_destroy(struct ath11k_base *ab);
  117. void ath11k_mac_unregister(struct ath11k_base *ab);
  118. int ath11k_mac_register(struct ath11k_base *ab);
  119. int ath11k_mac_allocate(struct ath11k_base *ab);
  120. int ath11k_mac_hw_ratecode_to_legacy_rate(u8 hw_rc, u8 preamble, u8 *rateidx,
  121. u16 *rate);
  122. u8 ath11k_mac_bitrate_to_idx(const struct ieee80211_supported_band *sband,
  123. u32 bitrate);
  124. u8 ath11k_mac_hw_rate_to_idx(const struct ieee80211_supported_band *sband,
  125. u8 hw_rate, bool cck);
  126. void __ath11k_mac_scan_finish(struct ath11k *ar);
  127. void ath11k_mac_scan_finish(struct ath11k *ar);
  128. struct ath11k_vif *ath11k_mac_get_arvif(struct ath11k *ar, u32 vdev_id);
  129. struct ath11k_vif *ath11k_mac_get_arvif_by_vdev_id(struct ath11k_base *ab,
  130. u32 vdev_id);
  131. u8 ath11k_mac_get_target_pdev_id(struct ath11k *ar);
  132. u8 ath11k_mac_get_target_pdev_id_from_vif(struct ath11k_vif *arvif);
  133. struct ath11k_vif *ath11k_mac_get_vif_up(struct ath11k_base *ab);
  134. struct ath11k *ath11k_mac_get_ar_by_vdev_id(struct ath11k_base *ab, u32 vdev_id);
  135. struct ath11k *ath11k_mac_get_ar_by_pdev_id(struct ath11k_base *ab, u32 pdev_id);
  136. void ath11k_mac_drain_tx(struct ath11k *ar);
  137. void ath11k_mac_peer_cleanup_all(struct ath11k *ar);
  138. int ath11k_mac_tx_mgmt_pending_free(int buf_id, void *skb, void *ctx);
  139. u8 ath11k_mac_bw_to_mac80211_bw(u8 bw);
  140. enum nl80211_he_gi ath11k_mac_he_gi_to_nl80211_he_gi(u8 sgi);
  141. enum nl80211_he_ru_alloc ath11k_mac_phy_he_ru_to_nl80211_he_ru_alloc(u16 ru_phy);
  142. enum nl80211_he_ru_alloc ath11k_mac_he_ru_tones_to_nl80211_he_ru_alloc(u16 ru_tones);
  143. enum ath11k_supported_bw ath11k_mac_mac80211_bw_to_ath11k_bw(enum rate_info_bw bw);
  144. enum hal_encrypt_type ath11k_dp_tx_get_encrypt_type(u32 cipher);
  145. void ath11k_mac_handle_beacon(struct ath11k *ar, struct sk_buff *skb);
  146. void ath11k_mac_handle_beacon_miss(struct ath11k *ar, u32 vdev_id);
  147. void ath11k_mac_bcn_tx_event(struct ath11k_vif *arvif);
  148. int ath11k_mac_wait_tx_complete(struct ath11k *ar);
  149. int ath11k_mac_vif_set_keepalive(struct ath11k_vif *arvif,
  150. enum wmi_sta_keepalive_method method,
  151. u32 interval);
  152. #endif