1 /* 2 * Copyright (C) 2016 Felix Fietkau <nbd@nbd.name> 3 * Copyright (C) 2018 Stanislaw Gruszka <stf_xl@wp.pl> 4 * 5 * Permission to use, copy, modify, and/or distribute this software for any 6 * purpose with or without fee is hereby granted, provided that the above 7 * copyright notice and this permission notice appear in all copies. 8 * 9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 */ 17 18 #ifndef __MT76X02_UTIL_H 19 #define __MT76X02_UTIL_H 20 21 #include <linux/kfifo.h> 22 23 #include "mt76.h" 24 #include "mt76x02_regs.h" 25 #include "mt76x02_mac.h" 26 #include "mt76x02_dfs.h" 27 #include "mt76x02_dma.h" 28 29 struct mt76x02_mac_stats { 30 u64 rx_stat[6]; 31 u64 tx_stat[6]; 32 u64 aggr_stat[2]; 33 u64 aggr_n[32]; 34 u64 zero_len_del[2]; 35 }; 36 37 #define MT_MAX_CHAINS 2 38 struct mt76x02_rx_freq_cal { 39 s8 high_gain[MT_MAX_CHAINS]; 40 s8 rssi_offset[MT_MAX_CHAINS]; 41 s8 lna_gain; 42 u32 mcu_gain; 43 s16 temp_offset; 44 u8 freq_offset; 45 }; 46 47 struct mt76x02_calibration { 48 struct mt76x02_rx_freq_cal rx; 49 50 u8 agc_gain_init[MT_MAX_CHAINS]; 51 u8 agc_gain_cur[MT_MAX_CHAINS]; 52 53 u16 false_cca; 54 s8 avg_rssi_all; 55 s8 agc_gain_adjust; 56 s8 low_gain; 57 58 u8 temp; 59 60 bool init_cal_done; 61 bool tssi_cal_done; 62 bool tssi_comp_pending; 63 bool dpd_cal_done; 64 bool channel_cal_done; 65 }; 66 67 struct mt76x02_dev { 68 struct mt76_dev mt76; /* must be first */ 69 70 struct mac_address macaddr_list[8]; 71 72 struct mutex phy_mutex; 73 struct mutex mutex; 74 75 u8 txdone_seq; 76 DECLARE_KFIFO_PTR(txstatus_fifo, struct mt76x02_tx_status); 77 78 struct sk_buff *rx_head; 79 80 struct tasklet_struct tx_tasklet; 81 struct tasklet_struct pre_tbtt_tasklet; 82 struct delayed_work cal_work; 83 struct delayed_work mac_work; 84 85 struct mt76x02_mac_stats stats; 86 atomic_t avg_ampdu_len; 87 u32 aggr_stats[32]; 88 89 struct sk_buff *beacons[8]; 90 u8 beacon_mask; 91 u8 beacon_data_mask; 92 93 u8 tbtt_count; 94 u16 beacon_int; 95 96 struct mt76x02_calibration cal; 97 98 s8 target_power; 99 s8 target_power_delta[2]; 100 bool enable_tpc; 101 102 bool no_2ghz; 103 104 u8 agc_save; 105 106 u8 coverage_class; 107 u8 slottime; 108 109 struct mt76x02_dfs_pattern_detector dfs_pd; 110 }; 111 112 extern struct ieee80211_rate mt76x02_rates[12]; 113 114 void mt76x02_configure_filter(struct ieee80211_hw *hw, 115 unsigned int changed_flags, 116 unsigned int *total_flags, u64 multicast); 117 int mt76x02_sta_add(struct ieee80211_hw *hw, struct ieee80211_vif *vif, 118 struct ieee80211_sta *sta); 119 int mt76x02_sta_remove(struct ieee80211_hw *hw, struct ieee80211_vif *vif, 120 struct ieee80211_sta *sta); 121 122 void mt76x02_vif_init(struct mt76_dev *dev, struct ieee80211_vif *vif, 123 unsigned int idx); 124 int mt76x02_add_interface(struct ieee80211_hw *hw, 125 struct ieee80211_vif *vif); 126 void mt76x02_remove_interface(struct ieee80211_hw *hw, 127 struct ieee80211_vif *vif); 128 129 int mt76x02_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif, 130 struct ieee80211_ampdu_params *params); 131 int mt76x02_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, 132 struct ieee80211_vif *vif, struct ieee80211_sta *sta, 133 struct ieee80211_key_conf *key); 134 int mt76x02_conf_tx(struct ieee80211_hw *hw, struct ieee80211_vif *vif, 135 u16 queue, const struct ieee80211_tx_queue_params *params); 136 void mt76x02_sta_rate_tbl_update(struct ieee80211_hw *hw, 137 struct ieee80211_vif *vif, 138 struct ieee80211_sta *sta); 139 s8 mt76x02_tx_get_max_txpwr_adj(struct mt76_dev *dev, 140 const struct ieee80211_tx_rate *rate); 141 s8 mt76x02_tx_get_txpwr_adj(struct mt76_dev *mdev, s8 txpwr, s8 max_txpwr_adj); 142 void mt76x02_tx_set_txpwr_auto(struct mt76x02_dev *dev, s8 txpwr); 143 int mt76x02_insert_hdr_pad(struct sk_buff *skb); 144 void mt76x02_remove_hdr_pad(struct sk_buff *skb, int len); 145 void mt76x02_tx_complete(struct mt76_dev *dev, struct sk_buff *skb); 146 bool mt76x02_tx_status_data(struct mt76_dev *dev, u8 *update); 147 void mt76x02_queue_rx_skb(struct mt76_dev *mdev, enum mt76_rxq_id q, 148 struct sk_buff *skb); 149 void mt76x02_rx_poll_complete(struct mt76_dev *mdev, enum mt76_rxq_id q); 150 irqreturn_t mt76x02_irq_handler(int irq, void *dev_instance); 151 void mt76x02_tx(struct ieee80211_hw *hw, struct ieee80211_tx_control *control, 152 struct sk_buff *skb); 153 int mt76x02_tx_prepare_skb(struct mt76_dev *mdev, void *txwi, 154 struct sk_buff *skb, struct mt76_queue *q, 155 struct mt76_wcid *wcid, struct ieee80211_sta *sta, 156 u32 *tx_info); 157 158 extern const u16 mt76x02_beacon_offsets[16]; 159 void mt76x02_set_beacon_offsets(struct mt76_dev *dev); 160 void mt76x02_set_irq_mask(struct mt76x02_dev *dev, u32 clear, u32 set); 161 void mt76x02_mac_start(struct mt76x02_dev *dev); 162 163 static inline void mt76x02_irq_enable(struct mt76x02_dev *dev, u32 mask) 164 { 165 mt76x02_set_irq_mask(dev, 0, mask); 166 } 167 168 static inline void mt76x02_irq_disable(struct mt76x02_dev *dev, u32 mask) 169 { 170 mt76x02_set_irq_mask(dev, mask, 0); 171 } 172 173 static inline bool 174 mt76x02_wait_for_txrx_idle(struct mt76_dev *dev) 175 { 176 return __mt76_poll_msec(dev, MT_MAC_STATUS, 177 MT_MAC_STATUS_TX | MT_MAC_STATUS_RX, 178 0, 100); 179 } 180 181 static inline struct mt76x02_sta * 182 mt76x02_rx_get_sta(struct mt76_dev *dev, u8 idx) 183 { 184 struct mt76_wcid *wcid; 185 186 if (idx >= ARRAY_SIZE(dev->wcid)) 187 return NULL; 188 189 wcid = rcu_dereference(dev->wcid[idx]); 190 if (!wcid) 191 return NULL; 192 193 return container_of(wcid, struct mt76x02_sta, wcid); 194 } 195 196 static inline struct mt76_wcid * 197 mt76x02_rx_get_sta_wcid(struct mt76x02_sta *sta, bool unicast) 198 { 199 if (!sta) 200 return NULL; 201 202 if (unicast) 203 return &sta->wcid; 204 else 205 return &sta->vif->group_wcid; 206 } 207 208 #endif 209