mac.h 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /* SPDX-License-Identifier: ISC */
  2. /*
  3. * Copyright (c) 2005-2011 Atheros Communications Inc.
  4. * Copyright (c) 2011-2017 Qualcomm Atheros, Inc.
  5. */
  6. #ifndef _MAC_H_
  7. #define _MAC_H_
  8. #include <net/mac80211.h>
  9. #include "core.h"
  10. #define WEP_KEYID_SHIFT 6
  11. enum wmi_tlv_tx_pause_id;
  12. enum wmi_tlv_tx_pause_action;
  13. struct ath10k_generic_iter {
  14. struct ath10k *ar;
  15. int ret;
  16. };
  17. struct rfc1042_hdr {
  18. u8 llc_dsap;
  19. u8 llc_ssap;
  20. u8 llc_ctrl;
  21. u8 snap_oui[3];
  22. __be16 snap_type;
  23. } __packed;
  24. struct ath10k *ath10k_mac_create(size_t priv_size);
  25. void ath10k_mac_destroy(struct ath10k *ar);
  26. int ath10k_mac_register(struct ath10k *ar);
  27. void ath10k_mac_unregister(struct ath10k *ar);
  28. struct ath10k_vif *ath10k_get_arvif(struct ath10k *ar, u32 vdev_id);
  29. void __ath10k_scan_finish(struct ath10k *ar);
  30. void ath10k_scan_finish(struct ath10k *ar);
  31. void ath10k_scan_timeout_work(struct work_struct *work);
  32. void ath10k_offchan_tx_purge(struct ath10k *ar);
  33. void ath10k_offchan_tx_work(struct work_struct *work);
  34. void ath10k_mgmt_over_wmi_tx_purge(struct ath10k *ar);
  35. void ath10k_mgmt_over_wmi_tx_work(struct work_struct *work);
  36. void ath10k_halt(struct ath10k *ar);
  37. void ath10k_mac_vif_beacon_free(struct ath10k_vif *arvif);
  38. void ath10k_drain_tx(struct ath10k *ar);
  39. bool ath10k_mac_is_peer_wep_key_set(struct ath10k *ar, const u8 *addr,
  40. u8 keyidx);
  41. int ath10k_mac_vif_chan(struct ieee80211_vif *vif,
  42. struct cfg80211_chan_def *def);
  43. void ath10k_mac_handle_beacon(struct ath10k *ar, struct sk_buff *skb);
  44. void ath10k_mac_handle_beacon_miss(struct ath10k *ar, u32 vdev_id);
  45. void ath10k_mac_handle_tx_pause_vdev(struct ath10k *ar, u32 vdev_id,
  46. enum wmi_tlv_tx_pause_id pause_id,
  47. enum wmi_tlv_tx_pause_action action);
  48. u8 ath10k_mac_hw_rate_to_idx(const struct ieee80211_supported_band *sband,
  49. u8 hw_rate, bool cck);
  50. u8 ath10k_mac_bitrate_to_idx(const struct ieee80211_supported_band *sband,
  51. u32 bitrate);
  52. void ath10k_mac_tx_lock(struct ath10k *ar, int reason);
  53. void ath10k_mac_tx_unlock(struct ath10k *ar, int reason);
  54. void ath10k_mac_vif_tx_lock(struct ath10k_vif *arvif, int reason);
  55. void ath10k_mac_vif_tx_unlock(struct ath10k_vif *arvif, int reason);
  56. bool ath10k_mac_tx_frm_has_freq(struct ath10k *ar);
  57. void ath10k_mac_tx_push_pending(struct ath10k *ar);
  58. int ath10k_mac_tx_push_txq(struct ieee80211_hw *hw,
  59. struct ieee80211_txq *txq);
  60. struct ieee80211_txq *ath10k_mac_txq_lookup(struct ath10k *ar,
  61. u16 peer_id,
  62. u8 tid);
  63. int ath10k_mac_ext_resource_config(struct ath10k *ar, u32 val);
  64. void ath10k_mac_wait_tx_complete(struct ath10k *ar);
  65. int ath10k_mac_rfkill_enable_radio(struct ath10k *ar, bool enable);
  66. static inline void ath10k_tx_h_seq_no(struct ieee80211_vif *vif,
  67. struct sk_buff *skb)
  68. {
  69. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  70. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
  71. struct ath10k_vif *arvif = (void *)vif->drv_priv;
  72. if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
  73. if (arvif->tx_seq_no == 0)
  74. arvif->tx_seq_no = 0x1000;
  75. if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
  76. arvif->tx_seq_no += 0x10;
  77. hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG);
  78. hdr->seq_ctrl |= cpu_to_le16(arvif->tx_seq_no);
  79. }
  80. }
  81. #endif /* _MAC_H_ */