2019-05-27 06:55:21 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2018-07-31 12:41:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Felix Fietkau <nbd@openwrt.org>
|
|
|
|
* Copyright (C) 2015 Jakub Kicinski <kubakici@wp.pl>
|
|
|
|
* Copyright (C) 2018 Stanislaw Gruszka <stf_xl@wp.pl>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/etherdevice.h>
|
2018-10-05 08:00:33 +00:00
|
|
|
#include "mt76x0.h"
|
2018-07-31 12:41:00 +00:00
|
|
|
|
2019-08-23 08:52:17 +00:00
|
|
|
static void
|
2018-10-12 10:16:28 +00:00
|
|
|
mt76x0_set_channel(struct mt76x02_dev *dev, struct cfg80211_chan_def *chandef)
|
|
|
|
{
|
|
|
|
cancel_delayed_work_sync(&dev->cal_work);
|
2019-08-01 08:26:22 +00:00
|
|
|
mt76x02_pre_tbtt_enable(dev, false);
|
2019-03-19 10:37:38 +00:00
|
|
|
if (mt76_is_mmio(dev))
|
2018-10-22 21:42:13 +00:00
|
|
|
tasklet_disable(&dev->dfs_pd.dfs_tasklet);
|
2018-10-12 10:16:28 +00:00
|
|
|
|
|
|
|
mt76_set_channel(&dev->mt76);
|
2019-08-23 08:52:17 +00:00
|
|
|
mt76x0_phy_set_channel(dev, chandef);
|
2018-10-15 09:33:11 +00:00
|
|
|
|
|
|
|
/* channel cycle counters read-and-clear */
|
|
|
|
mt76_rr(dev, MT_CH_IDLE);
|
|
|
|
mt76_rr(dev, MT_CH_BUSY);
|
|
|
|
|
2019-05-11 10:17:51 +00:00
|
|
|
mt76x02_edcca_init(dev);
|
2019-02-25 16:25:38 +00:00
|
|
|
|
2018-10-22 21:42:13 +00:00
|
|
|
if (mt76_is_mmio(dev)) {
|
|
|
|
mt76x02_dfs_init_params(dev);
|
|
|
|
tasklet_enable(&dev->dfs_pd.dfs_tasklet);
|
|
|
|
}
|
2019-08-01 08:26:22 +00:00
|
|
|
mt76x02_pre_tbtt_enable(dev, true);
|
2019-03-19 10:37:38 +00:00
|
|
|
|
2018-10-12 10:16:28 +00:00
|
|
|
mt76_txq_schedule_all(&dev->mt76);
|
|
|
|
}
|
|
|
|
|
2018-09-28 11:39:04 +00:00
|
|
|
int mt76x0_config(struct ieee80211_hw *hw, u32 changed)
|
2018-07-31 12:41:00 +00:00
|
|
|
{
|
2018-10-04 21:53:09 +00:00
|
|
|
struct mt76x02_dev *dev = hw->priv;
|
2018-07-31 12:41:00 +00:00
|
|
|
|
2018-08-29 11:16:35 +00:00
|
|
|
mutex_lock(&dev->mt76.mutex);
|
2018-07-31 12:41:00 +00:00
|
|
|
|
|
|
|
if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
|
|
|
|
ieee80211_stop_queues(hw);
|
2019-08-23 08:52:17 +00:00
|
|
|
mt76x0_set_channel(dev, &hw->conf.chandef);
|
2018-07-31 12:41:00 +00:00
|
|
|
ieee80211_wake_queues(hw);
|
|
|
|
}
|
|
|
|
|
2018-09-22 11:45:37 +00:00
|
|
|
if (changed & IEEE80211_CONF_CHANGE_POWER) {
|
|
|
|
dev->mt76.txpower_conf = hw->conf.power_level * 2;
|
|
|
|
|
|
|
|
if (test_bit(MT76_STATE_RUNNING, &dev->mt76.state))
|
|
|
|
mt76x0_phy_set_txpower(dev);
|
|
|
|
}
|
|
|
|
|
2018-09-28 11:38:58 +00:00
|
|
|
if (changed & IEEE80211_CONF_CHANGE_MONITOR) {
|
|
|
|
if (!(hw->conf.flags & IEEE80211_CONF_MONITOR))
|
|
|
|
dev->mt76.rxfilter |= MT_RX_FILTR_CFG_PROMISC;
|
|
|
|
else
|
|
|
|
dev->mt76.rxfilter &= ~MT_RX_FILTR_CFG_PROMISC;
|
|
|
|
|
|
|
|
mt76_wr(dev, MT_RX_FILTR_CFG, dev->mt76.rxfilter);
|
|
|
|
}
|
|
|
|
|
2018-08-29 11:16:35 +00:00
|
|
|
mutex_unlock(&dev->mt76.mutex);
|
2018-07-31 12:41:00 +00:00
|
|
|
|
2019-08-23 08:52:17 +00:00
|
|
|
return 0;
|
2018-07-31 12:41:00 +00:00
|
|
|
}
|
2018-09-28 11:39:04 +00:00
|
|
|
EXPORT_SYMBOL_GPL(mt76x0_config);
|