WIP FPC-III support
[linux/fpc-iii.git] / drivers / net / wireless / mediatek / mt76 / mt76x0 / pci.c
blobb87d8e136cb9af3730a5d5df649767a2caf053b3
1 // SPDX-License-Identifier: ISC
2 /*
3 * Copyright (C) 2016 Felix Fietkau <nbd@nbd.name>
4 */
6 #include <linux/kernel.h>
7 #include <linux/module.h>
8 #include <linux/pci.h>
10 #include "mt76x0.h"
11 #include "mcu.h"
13 static int mt76x0e_start(struct ieee80211_hw *hw)
15 struct mt76x02_dev *dev = hw->priv;
17 mt76x02_mac_start(dev);
18 mt76x0_phy_calibrate(dev, true);
19 ieee80211_queue_delayed_work(dev->mt76.hw, &dev->mt76.mac_work,
20 MT_MAC_WORK_INTERVAL);
21 ieee80211_queue_delayed_work(dev->mt76.hw, &dev->cal_work,
22 MT_CALIBRATE_INTERVAL);
23 set_bit(MT76_STATE_RUNNING, &dev->mphy.state);
25 return 0;
28 static void mt76x0e_stop_hw(struct mt76x02_dev *dev)
30 cancel_delayed_work_sync(&dev->cal_work);
31 cancel_delayed_work_sync(&dev->mt76.mac_work);
32 clear_bit(MT76_RESTART, &dev->mphy.state);
34 if (!mt76_poll(dev, MT_WPDMA_GLO_CFG, MT_WPDMA_GLO_CFG_TX_DMA_BUSY,
35 0, 1000))
36 dev_warn(dev->mt76.dev, "TX DMA did not stop\n");
37 mt76_clear(dev, MT_WPDMA_GLO_CFG, MT_WPDMA_GLO_CFG_TX_DMA_EN);
39 mt76x0_mac_stop(dev);
41 if (!mt76_poll(dev, MT_WPDMA_GLO_CFG, MT_WPDMA_GLO_CFG_RX_DMA_BUSY,
42 0, 1000))
43 dev_warn(dev->mt76.dev, "TX DMA did not stop\n");
44 mt76_clear(dev, MT_WPDMA_GLO_CFG, MT_WPDMA_GLO_CFG_RX_DMA_EN);
47 static void mt76x0e_stop(struct ieee80211_hw *hw)
49 struct mt76x02_dev *dev = hw->priv;
51 clear_bit(MT76_STATE_RUNNING, &dev->mphy.state);
52 mt76x0e_stop_hw(dev);
55 static void
56 mt76x0e_flush(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
57 u32 queues, bool drop)
61 static const struct ieee80211_ops mt76x0e_ops = {
62 .tx = mt76x02_tx,
63 .start = mt76x0e_start,
64 .stop = mt76x0e_stop,
65 .add_interface = mt76x02_add_interface,
66 .remove_interface = mt76x02_remove_interface,
67 .config = mt76x0_config,
68 .configure_filter = mt76x02_configure_filter,
69 .bss_info_changed = mt76x02_bss_info_changed,
70 .sta_state = mt76_sta_state,
71 .sta_pre_rcu_remove = mt76_sta_pre_rcu_remove,
72 .set_key = mt76x02_set_key,
73 .conf_tx = mt76x02_conf_tx,
74 .sw_scan_start = mt76_sw_scan,
75 .sw_scan_complete = mt76x02_sw_scan_complete,
76 .ampdu_action = mt76x02_ampdu_action,
77 .sta_rate_tbl_update = mt76x02_sta_rate_tbl_update,
78 .wake_tx_queue = mt76_wake_tx_queue,
79 .get_survey = mt76_get_survey,
80 .get_txpower = mt76_get_txpower,
81 .flush = mt76x0e_flush,
82 .set_tim = mt76_set_tim,
83 .release_buffered_frames = mt76_release_buffered_frames,
84 .set_coverage_class = mt76x02_set_coverage_class,
85 .set_rts_threshold = mt76x02_set_rts_threshold,
86 .get_antenna = mt76_get_antenna,
87 .reconfig_complete = mt76x02_reconfig_complete,
90 static int mt76x0e_register_device(struct mt76x02_dev *dev)
92 int err;
94 mt76x0_chip_onoff(dev, true, false);
95 if (!mt76x02_wait_for_mac(&dev->mt76))
96 return -ETIMEDOUT;
98 mt76x02_dma_disable(dev);
99 err = mt76x0e_mcu_init(dev);
100 if (err < 0)
101 return err;
103 err = mt76x02_dma_init(dev);
104 if (err < 0)
105 return err;
107 err = mt76x0_init_hardware(dev);
108 if (err < 0)
109 return err;
111 mt76x02e_init_beacon_config(dev);
113 if (mt76_chip(&dev->mt76) == 0x7610) {
114 u16 val;
116 mt76_clear(dev, MT_COEXCFG0, BIT(0));
118 val = mt76x02_eeprom_get(dev, MT_EE_NIC_CONF_0);
119 if (!(val & MT_EE_NIC_CONF_0_PA_IO_CURRENT))
120 mt76_set(dev, MT_XO_CTRL7, 0xc03);
123 mt76_clear(dev, 0x110, BIT(9));
124 mt76_set(dev, MT_MAX_LEN_CFG, BIT(13));
126 err = mt76x0_register_device(dev);
127 if (err < 0)
128 return err;
130 set_bit(MT76_STATE_INITIALIZED, &dev->mphy.state);
132 return 0;
135 static int
136 mt76x0e_probe(struct pci_dev *pdev, const struct pci_device_id *id)
138 static const struct mt76_driver_ops drv_ops = {
139 .txwi_size = sizeof(struct mt76x02_txwi),
140 .drv_flags = MT_DRV_TX_ALIGNED4_SKBS |
141 MT_DRV_SW_RX_AIRTIME,
142 .survey_flags = SURVEY_INFO_TIME_TX,
143 .update_survey = mt76x02_update_channel,
144 .tx_prepare_skb = mt76x02_tx_prepare_skb,
145 .tx_complete_skb = mt76x02_tx_complete_skb,
146 .rx_skb = mt76x02_queue_rx_skb,
147 .rx_poll_complete = mt76x02_rx_poll_complete,
148 .sta_ps = mt76x02_sta_ps,
149 .sta_add = mt76x02_sta_add,
150 .sta_remove = mt76x02_sta_remove,
152 struct mt76x02_dev *dev;
153 struct mt76_dev *mdev;
154 int ret;
156 ret = pcim_enable_device(pdev);
157 if (ret)
158 return ret;
160 ret = pcim_iomap_regions(pdev, BIT(0), pci_name(pdev));
161 if (ret)
162 return ret;
164 pci_set_master(pdev);
166 ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
167 if (ret)
168 return ret;
170 mdev = mt76_alloc_device(&pdev->dev, sizeof(*dev), &mt76x0e_ops,
171 &drv_ops);
172 if (!mdev)
173 return -ENOMEM;
175 dev = container_of(mdev, struct mt76x02_dev, mt76);
176 mutex_init(&dev->phy_mutex);
178 mt76_mmio_init(mdev, pcim_iomap_table(pdev)[0]);
180 mdev->rev = mt76_rr(dev, MT_ASIC_VERSION);
181 dev_info(mdev->dev, "ASIC revision: %08x\n", mdev->rev);
183 mt76_wr(dev, MT_INT_MASK_CSR, 0);
185 ret = devm_request_irq(mdev->dev, pdev->irq, mt76x02_irq_handler,
186 IRQF_SHARED, KBUILD_MODNAME, dev);
187 if (ret)
188 goto error;
190 ret = mt76x0e_register_device(dev);
191 if (ret < 0)
192 goto error;
194 return 0;
196 error:
197 mt76_free_device(&dev->mt76);
199 return ret;
202 static void mt76x0e_cleanup(struct mt76x02_dev *dev)
204 clear_bit(MT76_STATE_INITIALIZED, &dev->mphy.state);
205 tasklet_disable(&dev->mt76.pre_tbtt_tasklet);
206 mt76x0_chip_onoff(dev, false, false);
207 mt76x0e_stop_hw(dev);
208 mt76_dma_cleanup(&dev->mt76);
209 mt76x02_mcu_cleanup(dev);
212 static void
213 mt76x0e_remove(struct pci_dev *pdev)
215 struct mt76_dev *mdev = pci_get_drvdata(pdev);
216 struct mt76x02_dev *dev = container_of(mdev, struct mt76x02_dev, mt76);
218 mt76_unregister_device(mdev);
219 mt76x0e_cleanup(dev);
220 mt76_free_device(mdev);
223 static const struct pci_device_id mt76x0e_device_table[] = {
224 { PCI_DEVICE(0x14c3, 0x7610) },
225 { PCI_DEVICE(0x14c3, 0x7630) },
226 { PCI_DEVICE(0x14c3, 0x7650) },
227 { },
230 MODULE_DEVICE_TABLE(pci, mt76x0e_device_table);
231 MODULE_FIRMWARE(MT7610E_FIRMWARE);
232 MODULE_FIRMWARE(MT7650E_FIRMWARE);
233 MODULE_LICENSE("Dual BSD/GPL");
235 static struct pci_driver mt76x0e_driver = {
236 .name = KBUILD_MODNAME,
237 .id_table = mt76x0e_device_table,
238 .probe = mt76x0e_probe,
239 .remove = mt76x0e_remove,
242 module_pci_driver(mt76x0e_driver);