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