255 lines
6.1 KiB
C
255 lines
6.1 KiB
C
|
// SPDX-License-Identifier: ISC
|
||
|
/*
|
||
|
* Copyright (C) 2016 Felix Fietkau <nbd@nbd.name>
|
||
|
*/
|
||
|
|
||
|
#include <linux/kernel.h>
|
||
|
#include <linux/module.h>
|
||
|
#include <linux/pci.h>
|
||
|
|
||
|
#include "mt76x0.h"
|
||
|
#include "mcu.h"
|
||
|
|
||
|
static int mt76x0e_start(struct ieee80211_hw *hw)
|
||
|
{
|
||
|
struct mt76x02_dev *dev = hw->priv;
|
||
|
|
||
|
mt76x02_mac_start(dev);
|
||
|
mt76x0_phy_calibrate(dev, true);
|
||
|
ieee80211_queue_delayed_work(dev->mt76.hw, &dev->mt76.mac_work,
|
||
|
MT_MAC_WORK_INTERVAL);
|
||
|
ieee80211_queue_delayed_work(dev->mt76.hw, &dev->cal_work,
|
||
|
MT_CALIBRATE_INTERVAL);
|
||
|
set_bit(MT76_STATE_RUNNING, &dev->mt76.state);
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static void mt76x0e_stop_hw(struct mt76x02_dev *dev)
|
||
|
{
|
||
|
cancel_delayed_work_sync(&dev->cal_work);
|
||
|
cancel_delayed_work_sync(&dev->mt76.mac_work);
|
||
|
|
||
|
if (!mt76_poll(dev, MT_WPDMA_GLO_CFG, MT_WPDMA_GLO_CFG_TX_DMA_BUSY,
|
||
|
0, 1000))
|
||
|
dev_warn(dev->mt76.dev, "TX DMA did not stop\n");
|
||
|
mt76_clear(dev, MT_WPDMA_GLO_CFG, MT_WPDMA_GLO_CFG_TX_DMA_EN);
|
||
|
|
||
|
mt76x0_mac_stop(dev);
|
||
|
|
||
|
if (!mt76_poll(dev, MT_WPDMA_GLO_CFG, MT_WPDMA_GLO_CFG_RX_DMA_BUSY,
|
||
|
0, 1000))
|
||
|
dev_warn(dev->mt76.dev, "TX DMA did not stop\n");
|
||
|
mt76_clear(dev, MT_WPDMA_GLO_CFG, MT_WPDMA_GLO_CFG_RX_DMA_EN);
|
||
|
}
|
||
|
|
||
|
static void mt76x0e_stop(struct ieee80211_hw *hw)
|
||
|
{
|
||
|
struct mt76x02_dev *dev = hw->priv;
|
||
|
|
||
|
clear_bit(MT76_STATE_RUNNING, &dev->mt76.state);
|
||
|
mt76x0e_stop_hw(dev);
|
||
|
}
|
||
|
|
||
|
static int
|
||
|
mt76x0e_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
|
||
|
struct ieee80211_vif *vif, struct ieee80211_sta *sta,
|
||
|
struct ieee80211_key_conf *key)
|
||
|
{
|
||
|
struct mt76x02_dev *dev = hw->priv;
|
||
|
|
||
|
if (is_mt7630(dev))
|
||
|
return -EOPNOTSUPP;
|
||
|
|
||
|
return mt76x02_set_key(hw, cmd, vif, sta, key);
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
mt76x0e_flush(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
|
||
|
u32 queues, bool drop)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
static const struct ieee80211_ops mt76x0e_ops = {
|
||
|
.tx = mt76x02_tx,
|
||
|
.start = mt76x0e_start,
|
||
|
.stop = mt76x0e_stop,
|
||
|
.add_interface = mt76x02_add_interface,
|
||
|
.remove_interface = mt76x02_remove_interface,
|
||
|
.config = mt76x0_config,
|
||
|
.configure_filter = mt76x02_configure_filter,
|
||
|
.bss_info_changed = mt76x02_bss_info_changed,
|
||
|
.sta_state = mt76_sta_state,
|
||
|
.set_key = mt76x0e_set_key,
|
||
|
.conf_tx = mt76x02_conf_tx,
|
||
|
.sw_scan_start = mt76_sw_scan,
|
||
|
.sw_scan_complete = mt76x02_sw_scan_complete,
|
||
|
.ampdu_action = mt76x02_ampdu_action,
|
||
|
.sta_rate_tbl_update = mt76x02_sta_rate_tbl_update,
|
||
|
.wake_tx_queue = mt76_wake_tx_queue,
|
||
|
.get_survey = mt76_get_survey,
|
||
|
.get_txpower = mt76_get_txpower,
|
||
|
.flush = mt76x0e_flush,
|
||
|
.set_tim = mt76_set_tim,
|
||
|
.release_buffered_frames = mt76_release_buffered_frames,
|
||
|
.set_coverage_class = mt76x02_set_coverage_class,
|
||
|
.set_rts_threshold = mt76x02_set_rts_threshold,
|
||
|
};
|
||
|
|
||
|
static int mt76x0e_register_device(struct mt76x02_dev *dev)
|
||
|
{
|
||
|
int err;
|
||
|
|
||
|
mt76x0_chip_onoff(dev, true, false);
|
||
|
if (!mt76x02_wait_for_mac(&dev->mt76))
|
||
|
return -ETIMEDOUT;
|
||
|
|
||
|
mt76x02_dma_disable(dev);
|
||
|
err = mt76x0e_mcu_init(dev);
|
||
|
if (err < 0)
|
||
|
return err;
|
||
|
|
||
|
err = mt76x02_dma_init(dev);
|
||
|
if (err < 0)
|
||
|
return err;
|
||
|
|
||
|
err = mt76x0_init_hardware(dev);
|
||
|
if (err < 0)
|
||
|
return err;
|
||
|
|
||
|
mt76x02e_init_beacon_config(dev);
|
||
|
|
||
|
if (mt76_chip(&dev->mt76) == 0x7610) {
|
||
|
u16 val;
|
||
|
|
||
|
mt76_clear(dev, MT_COEXCFG0, BIT(0));
|
||
|
|
||
|
val = mt76x02_eeprom_get(dev, MT_EE_NIC_CONF_0);
|
||
|
if (!(val & MT_EE_NIC_CONF_0_PA_IO_CURRENT))
|
||
|
mt76_set(dev, MT_XO_CTRL7, 0xc03);
|
||
|
}
|
||
|
|
||
|
mt76_clear(dev, 0x110, BIT(9));
|
||
|
mt76_set(dev, MT_MAX_LEN_CFG, BIT(13));
|
||
|
|
||
|
mt76_wr(dev, MT_CH_TIME_CFG,
|
||
|
MT_CH_TIME_CFG_TIMER_EN |
|
||
|
MT_CH_TIME_CFG_TX_AS_BUSY |
|
||
|
MT_CH_TIME_CFG_RX_AS_BUSY |
|
||
|
MT_CH_TIME_CFG_NAV_AS_BUSY |
|
||
|
MT_CH_TIME_CFG_EIFS_AS_BUSY |
|
||
|
MT_CH_CCA_RC_EN |
|
||
|
FIELD_PREP(MT_CH_TIME_CFG_CH_TIMER_CLR, 1));
|
||
|
|
||
|
err = mt76x0_register_device(dev);
|
||
|
if (err < 0)
|
||
|
return err;
|
||
|
|
||
|
set_bit(MT76_STATE_INITIALIZED, &dev->mt76.state);
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static int
|
||
|
mt76x0e_probe(struct pci_dev *pdev, const struct pci_device_id *id)
|
||
|
{
|
||
|
static const struct mt76_driver_ops drv_ops = {
|
||
|
.txwi_size = sizeof(struct mt76x02_txwi),
|
||
|
.tx_aligned4_skbs = true,
|
||
|
.update_survey = mt76x02_update_channel,
|
||
|
.tx_prepare_skb = mt76x02_tx_prepare_skb,
|
||
|
.tx_complete_skb = mt76x02_tx_complete_skb,
|
||
|
.rx_skb = mt76x02_queue_rx_skb,
|
||
|
.rx_poll_complete = mt76x02_rx_poll_complete,
|
||
|
.sta_ps = mt76x02_sta_ps,
|
||
|
.sta_add = mt76x02_sta_add,
|
||
|
.sta_remove = mt76x02_sta_remove,
|
||
|
};
|
||
|
struct mt76x02_dev *dev;
|
||
|
struct mt76_dev *mdev;
|
||
|
int ret;
|
||
|
|
||
|
ret = pcim_enable_device(pdev);
|
||
|
if (ret)
|
||
|
return ret;
|
||
|
|
||
|
ret = pcim_iomap_regions(pdev, BIT(0), pci_name(pdev));
|
||
|
if (ret)
|
||
|
return ret;
|
||
|
|
||
|
pci_set_master(pdev);
|
||
|
|
||
|
ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
|
||
|
if (ret)
|
||
|
return ret;
|
||
|
|
||
|
mdev = mt76_alloc_device(&pdev->dev, sizeof(*dev), &mt76x0e_ops,
|
||
|
&drv_ops);
|
||
|
if (!mdev)
|
||
|
return -ENOMEM;
|
||
|
|
||
|
dev = container_of(mdev, struct mt76x02_dev, mt76);
|
||
|
mutex_init(&dev->phy_mutex);
|
||
|
|
||
|
mt76_mmio_init(mdev, pcim_iomap_table(pdev)[0]);
|
||
|
|
||
|
mdev->rev = mt76_rr(dev, MT_ASIC_VERSION);
|
||
|
dev_info(mdev->dev, "ASIC revision: %08x\n", mdev->rev);
|
||
|
|
||
|
ret = devm_request_irq(mdev->dev, pdev->irq, mt76x02_irq_handler,
|
||
|
IRQF_SHARED, KBUILD_MODNAME, dev);
|
||
|
if (ret)
|
||
|
goto error;
|
||
|
|
||
|
ret = mt76x0e_register_device(dev);
|
||
|
if (ret < 0)
|
||
|
goto error;
|
||
|
|
||
|
return 0;
|
||
|
|
||
|
error:
|
||
|
ieee80211_free_hw(mt76_hw(dev));
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
static void mt76x0e_cleanup(struct mt76x02_dev *dev)
|
||
|
{
|
||
|
clear_bit(MT76_STATE_INITIALIZED, &dev->mt76.state);
|
||
|
tasklet_disable(&dev->mt76.pre_tbtt_tasklet);
|
||
|
mt76x0_chip_onoff(dev, false, false);
|
||
|
mt76x0e_stop_hw(dev);
|
||
|
mt76x02_dma_cleanup(dev);
|
||
|
mt76x02_mcu_cleanup(dev);
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
mt76x0e_remove(struct pci_dev *pdev)
|
||
|
{
|
||
|
struct mt76_dev *mdev = pci_get_drvdata(pdev);
|
||
|
struct mt76x02_dev *dev = container_of(mdev, struct mt76x02_dev, mt76);
|
||
|
|
||
|
mt76_unregister_device(mdev);
|
||
|
mt76x0e_cleanup(dev);
|
||
|
mt76_free_device(mdev);
|
||
|
}
|
||
|
|
||
|
static const struct pci_device_id mt76x0e_device_table[] = {
|
||
|
{ PCI_DEVICE(0x14c3, 0x7630) },
|
||
|
{ PCI_DEVICE(0x14c3, 0x7650) },
|
||
|
{ },
|
||
|
};
|
||
|
|
||
|
MODULE_DEVICE_TABLE(pci, mt76x0e_device_table);
|
||
|
MODULE_FIRMWARE(MT7610E_FIRMWARE);
|
||
|
MODULE_FIRMWARE(MT7650E_FIRMWARE);
|
||
|
MODULE_LICENSE("Dual BSD/GPL");
|
||
|
|
||
|
static struct pci_driver mt76x0e_driver = {
|
||
|
.name = KBUILD_MODNAME,
|
||
|
.id_table = mt76x0e_device_table,
|
||
|
.probe = mt76x0e_probe,
|
||
|
.remove = mt76x0e_remove,
|
||
|
};
|
||
|
|
||
|
module_pci_driver(mt76x0e_driver);
|