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