2 * Copyright (C) 2014 Felix Fietkau <nbd@openwrt.org>
3 * Copyright (C) 2015 Jakub Kicinski <kubakici@wp.pl>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2
7 * as published by the Free Software Foundation
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
18 #include <linux/kernel.h>
19 #include <linux/device.h>
20 #include <linux/mutex.h>
21 #include <linux/usb.h>
22 #include <linux/completion.h>
23 #include <net/mac80211.h>
24 #include <linux/debugfs.h>
29 #define MT_CALIBRATE_INTERVAL (4 * HZ)
31 #define MT_FREQ_CAL_INIT_DELAY (30 * HZ)
32 #define MT_FREQ_CAL_CHECK_INTERVAL (10 * HZ)
33 #define MT_FREQ_CAL_ADJ_INTERVAL (HZ / 2)
35 #define MT_BBP_REG_VERSION 0x00
37 #define MT_USB_AGGR_SIZE_LIMIT 28 /* * 1024B */
38 #define MT_USB_AGGR_TIMEOUT 0x80 /* * 33ns */
40 #define MT_RX_URB_SIZE (PAGE_SIZE << MT_RX_ORDER)
42 struct mt7601u_dma_buf {
54 struct mt7601u_dma_buf resp;
55 struct completion resp_cmpl;
58 struct mt7601u_freq_cal {
59 struct delayed_work work;
73 #define N_RX_ENTRIES 16
74 struct mt7601u_rx_queue {
75 struct mt7601u_dev *dev;
77 struct mt7601u_dma_buf_rx {
88 #define N_TX_ENTRIES 64
90 struct mt7601u_tx_queue {
91 struct mt7601u_dev *dev;
93 struct mt7601u_dma_buf_tx {
100 unsigned int entries;
102 unsigned int fifo_seq;
113 #define GROUP_WCID(idx) (N_WCIDS - 2 - idx)
115 struct mt7601u_eeprom_params;
117 #define MT_EE_TEMPERATURE_SLOPE 39
118 #define MT_FREQ_OFFSET_INVALID -128
132 MT7601U_STATE_INITIALIZED,
133 MT7601U_STATE_REMOVED,
134 MT7601U_STATE_WLAN_RUNNING,
135 MT7601U_STATE_MCU_RUNNING,
136 MT7601U_STATE_SCANNING,
137 MT7601U_STATE_READING_STATS,
138 MT7601U_STATE_MORE_STATS,
142 * struct mt7601u_dev - adapter structure
143 * @lock: protects @wcid->tx_rate.
144 * @tx_lock: protects @tx_q and changes of MT7601U_STATE_*_STATS
146 * @rx_lock: protects @rx_q.
147 * @con_mon_lock: protects @ap_bssid, @bcn_*, @avg_rssi.
148 * @mutex: ensures exclusive access from mac80211 callbacks.
149 * @vendor_req_mutex: protects @vend_buf, ensures atomicity of split writes.
150 * @reg_atomic_mutex: ensures atomicity of indirect register accesses
151 * (accesses to RF and BBP).
152 * @hw_atomic_mutex: ensures exclusive access to HW during critical
153 * operations (power management, channel switch).
156 struct ieee80211_hw *hw;
163 unsigned long wcid_mask[N_WCIDS / BITS_PER_LONG];
165 struct cfg80211_chan_def chandef;
166 struct ieee80211_supported_band *sband_2g;
168 struct mt7601u_mcu mcu;
170 struct delayed_work cal_work;
171 struct delayed_work mac_work;
173 struct workqueue_struct *stat_wq;
174 struct delayed_work stat_work;
176 struct mt76_wcid *mon_wcid;
177 struct mt76_wcid __rcu *wcid[N_WCIDS];
181 const u16 *beacon_offsets;
183 u8 macaddr[ETH_ALEN];
184 struct mt7601u_eeprom_params *ee;
186 struct mutex vendor_req_mutex;
189 struct mutex reg_atomic_mutex;
190 struct mutex hw_atomic_mutex;
202 struct mt7601u_tx_queue *tx_q;
204 atomic_t avg_ampdu_len;
208 struct tasklet_struct rx_tasklet;
209 struct mt7601u_rx_queue rx_q;
211 /* Connection monitoring things */
212 spinlock_t con_mon_lock;
213 u8 ap_bssid[ETH_ALEN];
218 int avg_rssi; /* starts at 0 and converges */
222 struct mt7601u_freq_cal freq_cal;
228 s16 tssi_init_hvga_offset_db;
232 enum mt_temp_mode temp_mode;
236 bool pll_lock_protect;
244 struct mac_stats stats;
247 struct mt7601u_tssi_params {
264 struct mt76_wcid group_wcid;
268 struct mt76_wcid wcid;
269 u16 agg_ssn[IEEE80211_NUM_TIDS];
272 struct mt76_reg_pair {
279 extern const struct ieee80211_ops mt7601u_ops;
281 void mt7601u_init_debugfs(struct mt7601u_dev *dev);
283 u32 mt7601u_rr(struct mt7601u_dev *dev, u32 offset);
284 void mt7601u_wr(struct mt7601u_dev *dev, u32 offset, u32 val);
285 u32 mt7601u_rmw(struct mt7601u_dev *dev, u32 offset, u32 mask, u32 val);
286 u32 mt7601u_rmc(struct mt7601u_dev *dev, u32 offset, u32 mask, u32 val);
287 void mt7601u_wr_copy(struct mt7601u_dev *dev, u32 offset,
288 const void *data, int len);
290 int mt7601u_wait_asic_ready(struct mt7601u_dev *dev);
291 bool mt76_poll(struct mt7601u_dev *dev, u32 offset, u32 mask, u32 val,
293 bool mt76_poll_msec(struct mt7601u_dev *dev, u32 offset, u32 mask, u32 val,
296 /* Compatibility with mt76 */
297 #define mt76_rmw_field(_dev, _reg, _field, _val) \
298 mt76_rmw(_dev, _reg, _field, MT76_SET(_field, _val))
300 static inline u32 mt76_rr(struct mt7601u_dev *dev, u32 offset)
302 return mt7601u_rr(dev, offset);
305 static inline void mt76_wr(struct mt7601u_dev *dev, u32 offset, u32 val)
307 return mt7601u_wr(dev, offset, val);
311 mt76_rmw(struct mt7601u_dev *dev, u32 offset, u32 mask, u32 val)
313 return mt7601u_rmw(dev, offset, mask, val);
316 static inline u32 mt76_set(struct mt7601u_dev *dev, u32 offset, u32 val)
318 return mt76_rmw(dev, offset, 0, val);
321 static inline u32 mt76_clear(struct mt7601u_dev *dev, u32 offset, u32 val)
323 return mt76_rmw(dev, offset, val, 0);
326 int mt7601u_write_reg_pairs(struct mt7601u_dev *dev, u32 base,
327 const struct mt76_reg_pair *data, int len);
328 int mt7601u_burst_write_regs(struct mt7601u_dev *dev, u32 offset,
329 const u32 *data, int n);
330 void mt7601u_addr_wr(struct mt7601u_dev *dev, const u32 offset, const u8 *addr);
333 struct mt7601u_dev *mt7601u_alloc_device(struct device *dev);
334 int mt7601u_init_hardware(struct mt7601u_dev *dev);
335 int mt7601u_register_device(struct mt7601u_dev *dev);
336 void mt7601u_cleanup(struct mt7601u_dev *dev);
338 int mt7601u_mac_start(struct mt7601u_dev *dev);
339 void mt7601u_mac_stop(struct mt7601u_dev *dev);
342 int mt7601u_phy_init(struct mt7601u_dev *dev);
343 int mt7601u_wait_bbp_ready(struct mt7601u_dev *dev);
344 void mt7601u_set_rx_path(struct mt7601u_dev *dev, u8 path);
345 void mt7601u_set_tx_dac(struct mt7601u_dev *dev, u8 path);
346 int mt7601u_bbp_set_bw(struct mt7601u_dev *dev, int bw);
347 void mt7601u_agc_save(struct mt7601u_dev *dev);
348 void mt7601u_agc_restore(struct mt7601u_dev *dev);
349 int mt7601u_phy_set_channel(struct mt7601u_dev *dev,
350 struct cfg80211_chan_def *chandef);
351 void mt7601u_phy_recalibrate_after_assoc(struct mt7601u_dev *dev);
352 int mt7601u_phy_get_rssi(struct mt7601u_dev *dev,
353 struct mt7601u_rxwi *rxwi, u16 rate);
354 void mt7601u_phy_con_cal_onoff(struct mt7601u_dev *dev,
355 struct ieee80211_bss_conf *info);
358 void mt7601u_mac_work(struct work_struct *work);
359 void mt7601u_mac_set_protection(struct mt7601u_dev *dev, bool legacy_prot,
361 void mt7601u_mac_set_short_preamble(struct mt7601u_dev *dev, bool short_preamb);
362 void mt7601u_mac_config_tsf(struct mt7601u_dev *dev, bool enable, int interval);
364 mt7601u_mac_wcid_setup(struct mt7601u_dev *dev, u8 idx, u8 vif_idx, u8 *mac);
365 void mt7601u_mac_set_ampdu_factor(struct mt7601u_dev *dev);
368 void mt7601u_tx(struct ieee80211_hw *hw, struct ieee80211_tx_control *control,
369 struct sk_buff *skb);
370 int mt7601u_conf_tx(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
371 u16 queue, const struct ieee80211_tx_queue_params *params);
372 void mt7601u_tx_status(struct mt7601u_dev *dev, struct sk_buff *skb);
373 void mt7601u_tx_stat(struct work_struct *work);
376 void mt76_remove_hdr_pad(struct sk_buff *skb);
377 int mt76_insert_hdr_pad(struct sk_buff *skb);
379 u32 mt7601u_bbp_set_ctrlch(struct mt7601u_dev *dev, bool below);
381 static inline u32 mt7601u_mac_set_ctrlch(struct mt7601u_dev *dev, bool below)
383 return mt7601u_rmc(dev, MT_TX_BAND_CFG, 1, below);
386 int mt7601u_dma_init(struct mt7601u_dev *dev);
387 void mt7601u_dma_cleanup(struct mt7601u_dev *dev);
389 int mt7601u_dma_enqueue_tx(struct mt7601u_dev *dev, struct sk_buff *skb,
390 struct mt76_wcid *wcid, int hw_q);