1 /*
2  * Copyright (C) 2014 Felix Fietkau <nbd@openwrt.org>
3  * Copyright (C) 2015 Jakub Kicinski <kubakici@wp.pl>
4  * Copyright (C) 2018 Stanislaw Gruszka <stf_xl@wp.pl>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2
8  * as published by the Free Software Foundation
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  */
15 
16 #ifndef MT76X0U_H
17 #define MT76X0U_H
18 
19 #include <linux/bitfield.h>
20 #include <linux/kernel.h>
21 #include <linux/device.h>
22 #include <linux/mutex.h>
23 #include <linux/usb.h>
24 #include <linux/completion.h>
25 #include <net/mac80211.h>
26 #include <linux/debugfs.h>
27 
28 #include "../mt76x02.h"
29 #include "eeprom.h"
30 
31 #define MT_CALIBRATE_INTERVAL		(4 * HZ)
32 
33 #define MT_USB_AGGR_SIZE_LIMIT		21 /* * 1024B */
34 #define MT_USB_AGGR_TIMEOUT		0x80 /* * 33ns */
35 
36 static inline bool is_mt7610e(struct mt76x02_dev *dev)
37 {
38 	/* TODO */
39 	return false;
40 }
41 
42 void mt76x0_init_debugfs(struct mt76x02_dev *dev);
43 
44 /* Init */
45 struct mt76x02_dev *
46 mt76x0_alloc_device(struct device *pdev,
47 		    const struct mt76_driver_ops *drv_ops,
48 		    const struct ieee80211_ops *ops);
49 int mt76x0_init_hardware(struct mt76x02_dev *dev);
50 int mt76x0_register_device(struct mt76x02_dev *dev);
51 void mt76x0_chip_onoff(struct mt76x02_dev *dev, bool enable, bool reset);
52 
53 int mt76x0_mac_start(struct mt76x02_dev *dev);
54 void mt76x0_mac_stop(struct mt76x02_dev *dev);
55 
56 int mt76x0_config(struct ieee80211_hw *hw, u32 changed);
57 void mt76x0_bss_info_changed(struct ieee80211_hw *hw,
58 			     struct ieee80211_vif *vif,
59 			     struct ieee80211_bss_conf *info, u32 changed);
60 void mt76x0_sw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
61 		    const u8 *mac_addr);
62 void mt76x0_sw_scan_complete(struct ieee80211_hw *hw,
63 			     struct ieee80211_vif *vif);
64 int mt76x0_set_rts_threshold(struct ieee80211_hw *hw, u32 value);
65 
66 /* PHY */
67 void mt76x0_phy_init(struct mt76x02_dev *dev);
68 int mt76x0_wait_bbp_ready(struct mt76x02_dev *dev);
69 void mt76x0_agc_save(struct mt76x02_dev *dev);
70 void mt76x0_agc_restore(struct mt76x02_dev *dev);
71 int mt76x0_phy_set_channel(struct mt76x02_dev *dev,
72 			    struct cfg80211_chan_def *chandef);
73 void mt76x0_phy_recalibrate_after_assoc(struct mt76x02_dev *dev);
74 void mt76x0_phy_set_txpower(struct mt76x02_dev *dev);
75 
76 /* MAC */
77 void mt76x0_mac_work(struct work_struct *work);
78 void mt76x0_mac_set_protection(struct mt76x02_dev *dev, bool legacy_prot,
79 				int ht_mode);
80 void mt76x0_mac_set_short_preamble(struct mt76x02_dev *dev, bool short_preamb);
81 void mt76x0_mac_config_tsf(struct mt76x02_dev *dev, bool enable, int interval);
82 void mt76x0_mac_set_ampdu_factor(struct mt76x02_dev *dev);
83 
84 #endif
85