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_USB_AGGR_SIZE_LIMIT		21 /* * 1024B */
32 #define MT_USB_AGGR_TIMEOUT		0x80 /* * 33ns */
33 
34 static inline bool is_mt7610e(struct mt76x02_dev *dev)
35 {
36 	/* TODO */
37 	return false;
38 }
39 
40 static inline bool is_mt7630(struct mt76x02_dev *dev)
41 {
42 	return mt76_chip(&dev->mt76) == 0x7630;
43 }
44 
45 /* Init */
46 struct mt76x02_dev *
47 mt76x0_alloc_device(struct device *pdev,
48 		    const struct mt76_driver_ops *drv_ops,
49 		    const struct ieee80211_ops *ops);
50 int mt76x0_init_hardware(struct mt76x02_dev *dev);
51 int mt76x0_register_device(struct mt76x02_dev *dev);
52 void mt76x0_chip_onoff(struct mt76x02_dev *dev, bool enable, bool reset);
53 
54 int mt76x0_mac_start(struct mt76x02_dev *dev);
55 void mt76x0_mac_stop(struct mt76x02_dev *dev);
56 
57 int mt76x0_config(struct ieee80211_hw *hw, u32 changed);
58 void mt76x0_bss_info_changed(struct ieee80211_hw *hw,
59 			     struct ieee80211_vif *vif,
60 			     struct ieee80211_bss_conf *info, u32 changed);
61 void mt76x0_sw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
62 		    const u8 *mac_addr);
63 void mt76x0_sw_scan_complete(struct ieee80211_hw *hw,
64 			     struct ieee80211_vif *vif);
65 int mt76x0_set_rts_threshold(struct ieee80211_hw *hw, u32 value);
66 
67 /* PHY */
68 void mt76x0_phy_init(struct mt76x02_dev *dev);
69 int mt76x0_phy_wait_bbp_ready(struct mt76x02_dev *dev);
70 int mt76x0_phy_set_channel(struct mt76x02_dev *dev,
71 			    struct cfg80211_chan_def *chandef);
72 void mt76x0_phy_set_txpower(struct mt76x02_dev *dev);
73 void mt76x0_phy_calibrate(struct mt76x02_dev *dev, bool power_on);
74 
75 /* MAC */
76 void mt76x0_mac_set_protection(struct mt76x02_dev *dev, bool legacy_prot,
77 				int ht_mode);
78 void mt76x0_mac_set_short_preamble(struct mt76x02_dev *dev, bool short_preamb);
79 void mt76x0_mac_config_tsf(struct mt76x02_dev *dev, bool enable, int interval);
80 void mt76x0_mac_set_ampdu_factor(struct mt76x02_dev *dev);
81 
82 #endif
83