]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/net/wireless/mediatek/mt76/mt76x02_util.h
d442057273aa3fd53ad3715c96a03d128a414610
[linux.git] / drivers / net / wireless / mediatek / mt76 / mt76x02_util.h
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 "mt76x02_mac.h"
24 #include "mt76x02_dfs.h"
25
26 struct mt76x02_mac_stats {
27         u64 rx_stat[6];
28         u64 tx_stat[6];
29         u64 aggr_stat[2];
30         u64 aggr_n[32];
31         u64 zero_len_del[2];
32 };
33
34 #define MT_MAX_CHAINS           2
35 struct mt76x02_rx_freq_cal {
36         s8 high_gain[MT_MAX_CHAINS];
37         s8 rssi_offset[MT_MAX_CHAINS];
38         s8 lna_gain;
39         u32 mcu_gain;
40         s16 temp_offset;
41         u8 freq_offset;
42 };
43
44 struct mt76x02_calibration {
45         struct mt76x02_rx_freq_cal rx;
46
47         u8 agc_gain_init[MT_MAX_CHAINS];
48         u8 agc_gain_cur[MT_MAX_CHAINS];
49
50         u16 false_cca;
51         s8 avg_rssi_all;
52         s8 agc_gain_adjust;
53         s8 low_gain;
54
55         u8 temp;
56
57         bool init_cal_done;
58         bool tssi_cal_done;
59         bool tssi_comp_pending;
60         bool dpd_cal_done;
61         bool channel_cal_done;
62 };
63
64 struct mt76x02_dev {
65         struct mt76_dev mt76; /* must be first */
66
67         struct mac_address macaddr_list[8];
68
69         struct mutex phy_mutex;
70         struct mutex mutex;
71
72         u8 txdone_seq;
73         DECLARE_KFIFO_PTR(txstatus_fifo, struct mt76x02_tx_status);
74
75         struct sk_buff *rx_head;
76
77         struct tasklet_struct tx_tasklet;
78         struct tasklet_struct pre_tbtt_tasklet;
79         struct delayed_work cal_work;
80         struct delayed_work mac_work;
81
82         struct mt76x02_mac_stats stats;
83         atomic_t avg_ampdu_len;
84         u32 aggr_stats[32];
85
86         struct sk_buff *beacons[8];
87         u8 beacon_mask;
88         u8 beacon_data_mask;
89
90         u8 tbtt_count;
91         u16 beacon_int;
92
93         struct mt76x02_calibration cal;
94
95         s8 target_power;
96         s8 target_power_delta[2];
97         bool enable_tpc;
98
99         bool no_2ghz;
100
101         u8 agc_save;
102
103         u8 coverage_class;
104         u8 slottime;
105
106         struct mt76x02_dfs_pattern_detector dfs_pd;
107 };
108
109 extern struct ieee80211_rate mt76x02_rates[12];
110
111 void mt76x02_configure_filter(struct ieee80211_hw *hw,
112                              unsigned int changed_flags,
113                              unsigned int *total_flags, u64 multicast);
114 int mt76x02_sta_add(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
115                    struct ieee80211_sta *sta);
116 int mt76x02_sta_remove(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
117                       struct ieee80211_sta *sta);
118
119 void mt76x02_vif_init(struct mt76_dev *dev, struct ieee80211_vif *vif,
120                      unsigned int idx);
121 int mt76x02_add_interface(struct ieee80211_hw *hw,
122                          struct ieee80211_vif *vif);
123 void mt76x02_remove_interface(struct ieee80211_hw *hw,
124                              struct ieee80211_vif *vif);
125
126 int mt76x02_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
127                         struct ieee80211_ampdu_params *params);
128 int mt76x02_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
129                    struct ieee80211_vif *vif, struct ieee80211_sta *sta,
130                    struct ieee80211_key_conf *key);
131 int mt76x02_conf_tx(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
132                    u16 queue, const struct ieee80211_tx_queue_params *params);
133 void mt76x02_sta_rate_tbl_update(struct ieee80211_hw *hw,
134                                 struct ieee80211_vif *vif,
135                                 struct ieee80211_sta *sta);
136 s8 mt76x02_tx_get_max_txpwr_adj(struct mt76_dev *dev,
137                                 const struct ieee80211_tx_rate *rate);
138 int mt76x02_insert_hdr_pad(struct sk_buff *skb);
139 void mt76x02_remove_hdr_pad(struct sk_buff *skb, int len);
140 void mt76x02_tx_complete(struct mt76_dev *dev, struct sk_buff *skb);
141 void mt76x02_tx_complete_skb(struct mt76_dev *mdev, struct mt76_queue *q,
142                             struct mt76_queue_entry *e, bool flush);
143 bool mt76x02_tx_status_data(struct mt76_dev *dev, u8 *update);
144 void mt76x02_queue_rx_skb(struct mt76_dev *mdev, enum mt76_rxq_id q,
145                           struct sk_buff *skb);
146
147 extern const u16 mt76x02_beacon_offsets[16];
148 void mt76x02_set_beacon_offsets(struct mt76_dev *dev);
149 void mt76x02_set_irq_mask(struct mt76_dev *dev, u32 clear, u32 set);
150 void mt76x02_mac_start(struct mt76_dev *dev);
151
152 static inline void mt76x02_irq_enable(struct mt76_dev *dev, u32 mask)
153 {
154         mt76x02_set_irq_mask(dev, 0, mask);
155 }
156
157 static inline void mt76x02_irq_disable(struct mt76_dev *dev, u32 mask)
158 {
159         mt76x02_set_irq_mask(dev, mask, 0);
160 }
161
162 static inline bool
163 mt76x02_wait_for_txrx_idle(struct mt76_dev *dev)
164 {
165         return __mt76_poll_msec(dev, MT_MAC_STATUS,
166                                 MT_MAC_STATUS_TX | MT_MAC_STATUS_RX,
167                                 0, 100);
168 }
169
170 static inline struct mt76x02_sta *
171 mt76x02_rx_get_sta(struct mt76_dev *dev, u8 idx)
172 {
173         struct mt76_wcid *wcid;
174
175         if (idx >= ARRAY_SIZE(dev->wcid))
176                 return NULL;
177
178         wcid = rcu_dereference(dev->wcid[idx]);
179         if (!wcid)
180                 return NULL;
181
182         return container_of(wcid, struct mt76x02_sta, wcid);
183 }
184
185 static inline struct mt76_wcid *
186 mt76x02_rx_get_sta_wcid(struct mt76x02_sta *sta, bool unicast)
187 {
188         if (!sta)
189                 return NULL;
190
191         if (unicast)
192                 return &sta->wcid;
193         else
194                 return &sta->vif->group_wcid;
195 }
196
197 #endif