From: Lorenzo Bianconi <lorenzo.bianconi@redhat.com>
To: Chad Monroe <chad@monroe.io>
Cc: Felix Fietkau <nbd@nbd.name>,
Johannes Berg <johannes.berg@intel.com>,
Shayne Chen <shayne.chen@mediatek.com>,
Evelyn Tsai <evelyn.tsai@mediatek.com>,
Ryder Lee <ryder.lee@mediatek.com>,
linux-wireless@vger.kernel.org,
linux-mediatek@lists.infradead.org,
Ben Greear <greearb@candelatech.com>
Subject: Re: [PATCH 2/2] mt76: mt7615: fix radar detector logic
Date: Fri, 27 Aug 2021 20:44:47 +0200 [thread overview]
Message-ID: <YSkyn9eqQKLXcncf@lore-desk> (raw)
In-Reply-To: <4a4bb98aa6dd1c7f4671d11a901fb8cf35f49308.1630081048.git.chad@monroe.io>
[-- Attachment #1.1: Type: text/plain, Size: 11874 bytes --]
> Before this patch, if AP went from ch 100 to ch 36, the radar detector
> logic in the firmware was not being disabled. This made the AP appear
> to be up, but no beacons were seen on air until module reload or
> reboot.
>
> To reproduce this, I change hostapd.conf and restart hostapd. Others
> on openwrt used their UI to make changes and problem was seen, but
> stil others changed channels in some other way and/or had some other
> difference and could *not* reproduce it. So, something perhaps a
> bit subtle.
>
> To fix the problem, stop depending on comparing dfs_state, store last
> freq/bandwidth to detect changes in that, and streamline code that
> checks to enable/disable radar detection. And add in error checking
> and dev_dbg logic so one can see what is actually happening if need
> to debug this again.
>
> Signed-off-by: Ben Greear <greearb@candelatech.com>
> Signed-off-by: Chad Monroe <chad@monroe.io>
> ---
> .../net/wireless/mediatek/mt76/mt7615/init.c | 12 ++-
> .../net/wireless/mediatek/mt76/mt7615/mac.c | 102 ++++++++++++------
> .../net/wireless/mediatek/mt76/mt7615/main.c | 25 ++++-
> .../wireless/mediatek/mt76/mt7615/mt7615.h | 6 +-
> 4 files changed, 104 insertions(+), 41 deletions(-)
>
> diff --git a/drivers/net/wireless/mediatek/mt76/mt7615/init.c b/drivers/net/wireless/mediatek/mt76/mt7615/init.c
> index 05235a60d413..23dde13c2703 100644
> --- a/drivers/net/wireless/mediatek/mt76/mt7615/init.c
> +++ b/drivers/net/wireless/mediatek/mt76/mt7615/init.c
> @@ -333,6 +333,7 @@ mt7615_regd_notifier(struct wiphy *wiphy,
> struct mt76_phy *mphy = hw->priv;
> struct mt7615_phy *phy = mphy->priv;
> struct cfg80211_chan_def *chandef = &mphy->chandef;
> + int ret;
>
> memcpy(dev->mt76.alpha2, request->alpha2, sizeof(dev->mt76.alpha2));
> dev->mt76.region = request->dfs_region;
> @@ -342,14 +343,18 @@ mt7615_regd_notifier(struct wiphy *wiphy,
>
> mt7615_mutex_acquire(dev);
>
> - if (chandef->chan->flags & IEEE80211_CHAN_RADAR)
> - mt7615_dfs_init_radar_detector(phy);
> -
> if (mt7615_firmware_offload(phy->dev)) {
> mt76_connac_mcu_set_channel_domain(mphy);
> mt76_connac_mcu_set_rate_txpower(mphy);
> }
>
> + if (chandef->chan->flags & IEEE80211_CHAN_RADAR) {
> + ret = mt7615_dfs_init_radar_detector(phy);
> + if (ret < 0)
> + dev_err(dev->mt76.dev, "init-wifi: dfs-init-radar-detector failed: %d",
> + ret);
I guess this chunck does not make any difference since mt7663 does not support
dfs (w offload fw).
> + }
> +
> mt7615_mutex_release(dev);
> }
>
> @@ -550,7 +555,6 @@ void mt7615_init_device(struct mt7615_dev *dev)
> dev->pm.stats.last_wake_event = jiffies;
> dev->pm.stats.last_doze_event = jiffies;
> mt7615_cap_dbdc_disable(dev);
> - dev->phy.dfs_state = -1;
>
> #ifdef CONFIG_NL80211_TESTMODE
> dev->mt76.test_ops = &mt7615_testmode_ops;
> diff --git a/drivers/net/wireless/mediatek/mt76/mt7615/mac.c b/drivers/net/wireless/mediatek/mt76/mt7615/mac.c
> index 78b55e872da0..571fa73baa76 100644
> --- a/drivers/net/wireless/mediatek/mt76/mt7615/mac.c
> +++ b/drivers/net/wireless/mediatek/mt76/mt7615/mac.c
> @@ -2101,14 +2101,29 @@ void mt7615_tx_token_put(struct mt7615_dev *dev)
> }
> EXPORT_SYMBOL_GPL(mt7615_tx_token_put);
>
> -static void mt7615_dfs_stop_radar_detector(struct mt7615_phy *phy)
> +int mt7615_dfs_stop_radar_detector(struct mt7615_phy *phy, bool ext_phy)
> {
> struct mt7615_dev *dev = phy->dev;
> + int err;
> +
> + dev_dbg(dev->mt76.dev, "dfs-stop-radar-detector, rdd-state: 0x%x",
> + phy->rdd_state);
> +
> + err = mt7615_mcu_rdd_cmd(dev, RDD_NORMAL_START, ext_phy,
> + MT_RX_SEL0, 0);
> + if (err < 0) {
> + dev_err(dev->mt76.dev, "mcu-rdd-cmd RDD_NORMAL_START failed: %d",
> + err);
> + /* I think best to carry on, even if we have an error here. */
> + }
I guess you just moved mt7615_mcu_rdd_cmd(dev, RDD_NORMAL_START, ..) here but
the logic is the same as before, right? If so I think we can drop it
>
> if (phy->rdd_state & BIT(0))
> mt7615_mcu_rdd_cmd(dev, RDD_STOP, 0, MT_RX_SEL0, 0);
> if (phy->rdd_state & BIT(1))
> mt7615_mcu_rdd_cmd(dev, RDD_STOP, 1, MT_RX_SEL0, 0);
> + phy->rdd_state = 0;
> +
> + return err;
> }
>
> static int mt7615_dfs_start_rdd(struct mt7615_dev *dev, int chain)
> @@ -2116,11 +2131,14 @@ static int mt7615_dfs_start_rdd(struct mt7615_dev *dev, int chain)
> int err;
>
> err = mt7615_mcu_rdd_cmd(dev, RDD_START, chain, MT_RX_SEL0, 0);
> +
> + dev_dbg(dev->mt76.dev, "dfs-start-rdd, RDD_START rv: %d", err);
> if (err < 0)
> return err;
>
> - return mt7615_mcu_rdd_cmd(dev, RDD_DET_MODE, chain,
> - MT_RX_SEL0, 1);
> + err = mt7615_mcu_rdd_cmd(dev, RDD_DET_MODE, chain, MT_RX_SEL0, 1);
> + dev_dbg(dev->mt76.dev, "dfs-start-rdd, RDD_DET_MODE rv: %d", err);
> + return err;
> }
>
> static int mt7615_dfs_start_radar_detector(struct mt7615_phy *phy)
> @@ -2227,48 +2245,70 @@ int mt7615_dfs_init_radar_detector(struct mt7615_phy *phy)
> if (is_mt7663(&dev->mt76))
> return 0;
>
> - if (dev->mt76.region == NL80211_DFS_UNSET) {
> - phy->dfs_state = -1;
> - if (phy->rdd_state)
> - goto stop;
> + dev_dbg(dev->mt76.dev,
> + "dfs-init-radar-detector, region: %d freq: %d chandef dfs-state: %d",
> + dev->mt76.region, chandef->chan->center_freq,
> + chandef->chan->dfs_state);
>
> + if (test_bit(MT76_SCANNING, &phy->mt76->state)) {
> + dev_dbg(dev->mt76.dev, "init-radar, was scanning, no change.\n");
> return 0;
> }
>
> - if (test_bit(MT76_SCANNING, &phy->mt76->state))
> - return 0;
> + if (dev->mt76.region == NL80211_DFS_UNSET) {
> + dev_dbg(dev->mt76.dev,
> + "dfs-init-radar, region is UNSET, disable radar.");
> + goto stop;
> + }
> +
> + if (!(chandef->chan->flags & IEEE80211_CHAN_RADAR)) {
> + dev_dbg(dev->mt76.dev,
> + "dfs-init-radar, chandef does not want radar.");
> + goto stop;
> + }
> +
> + ieee80211_iterate_active_interfaces(phy->mt76->hw,
> + IEEE80211_IFACE_ITER_RESUME_ALL,
> + mt7615_vif_counts, &counts);
> +
> + if (!(counts.ap + counts.adhoc + counts.mesh)) {
> + /* No beaconning interfaces, do not start CAC */
> + dev_dbg(dev->mt76.dev,
> + "dfs-init-radar, no AP/Mesh/Adhoc vifs active, stop radar.");
> + goto stop;
> + }
>
> - if (phy->dfs_state == chandef->chan->dfs_state)
> + /* At this point, we need radar detection, see if we have started
> + * it already.
> + */
> + if (phy->rdd_state) {
Are you sure this approach works with DBDC? in this case phy->rdd_state is not
0 but the radar detection has not started on this phy.
> + if (chandef->chan->dfs_state == NL80211_DFS_AVAILABLE) {
> + /* CAC is already complete. */
> + dev_dbg(dev->mt76.dev,
> + "init-radar, RADAR started and DFS state is AVAILABLE, call RDD_CAC_END");
> + return mt7615_mcu_rdd_cmd(dev, RDD_CAC_END, ext_phy,
> + MT_RX_SEL0, 0);
> + }
> + dev_dbg(dev->mt76.dev,
> + "init-radar, rdd_state indicates RADAR already started,"
> + " DFS state: %d not YET available, rdd_state: 0x%x",
> + chandef->chan->dfs_state, phy->rdd_state);
> return 0;
> + }
>
> err = mt7615_dfs_init_radar_specs(phy);
> if (err < 0) {
> - phy->dfs_state = -1;
> + dev_err(dev->mt76.dev, "dfs-init-radar-specs failed: %d",
> + err);
> goto stop;
> }
>
> - phy->dfs_state = chandef->chan->dfs_state;
> -
> - if (chandef->chan->flags & IEEE80211_CHAN_RADAR) {
> - if (chandef->chan->dfs_state != NL80211_DFS_AVAILABLE) {
> - ieee80211_iterate_active_interfaces(phy->mt76->hw,
> - IEEE80211_IFACE_ITER_RESUME_ALL,
> - mt7615_vif_counts, &counts);
> - if (counts.ap + counts.adhoc + counts.mesh)
> - mt7615_dfs_start_radar_detector(phy);
> - return 0;
> - }
> - return mt7615_mcu_rdd_cmd(dev, RDD_CAC_END, ext_phy,
> - MT_RX_SEL0, 0);
> - }
> + err = mt7615_dfs_start_radar_detector(phy);
> + dev_dbg(dev->mt76.dev, "dfs-start-radar-detector rv: %d", err);
> + return err;
>
> stop:
> - err = mt7615_mcu_rdd_cmd(dev, RDD_NORMAL_START, ext_phy, MT_RX_SEL0, 0);
> - if (err < 0)
> - return err;
> -
> - mt7615_dfs_stop_radar_detector(phy);
> - return 0;
> + return mt7615_dfs_stop_radar_detector(phy, ext_phy);
> }
>
> int mt7615_mac_set_beacon_filter(struct mt7615_phy *phy,
> diff --git a/drivers/net/wireless/mediatek/mt76/mt7615/main.c b/drivers/net/wireless/mediatek/mt76/mt7615/main.c
> index 7154acf3eb9b..484c8803726f 100644
> --- a/drivers/net/wireless/mediatek/mt76/mt7615/main.c
> +++ b/drivers/net/wireless/mediatek/mt76/mt7615/main.c
> @@ -291,6 +291,8 @@ static void mt7615_init_dfs_state(struct mt7615_phy *phy)
> struct mt76_phy *mphy = phy->mt76;
> struct ieee80211_hw *hw = mphy->hw;
> struct cfg80211_chan_def *chandef = &hw->conf.chandef;
> + struct mt7615_dev *dev = phy->dev;
> + bool ext_phy = phy != &dev->phy;
>
> if (hw->conf.flags & IEEE80211_CONF_OFFCHANNEL)
> return;
> @@ -298,11 +300,23 @@ static void mt7615_init_dfs_state(struct mt7615_phy *phy)
> if (!(chandef->chan->flags & IEEE80211_CHAN_RADAR))
> return;
>
> - if (mphy->chandef.chan->center_freq == chandef->chan->center_freq &&
> - mphy->chandef.width == chandef->width)
> + if (phy->dfs_center_freq == chandef->chan->center_freq &&
> + phy->dfs_ch_width == chandef->width)
> return;
Why do we need phy->dfs_center_freq and phy->dfs_ch_width? if I read correctly
the code mphy->chandef.* is updated in mt76_set_channel() so we do not need
them for thec check above, right?
Regards,
Lorenzo
>
> - phy->dfs_state = -1;
> + /* We are being moved to a new frequency/bw, still on DFS. Stop
> + * any existing DFS, then will start it again in the
> + * init-radar-detector logic.
> + */
> + if (phy->rdd_state) {
> + dev_dbg(dev->mt76.dev,
> + "init-dfs-state, channel changed, old: %d:%d new: %d:%d, stopping radar.",
> + phy->dfs_center_freq, phy->dfs_ch_width,
> + chandef->chan->center_freq, chandef->width);
> + mt7615_dfs_stop_radar_detector(phy, ext_phy);
> + }
> + phy->dfs_center_freq = chandef->chan->center_freq;
> + phy->dfs_ch_width = chandef->width;
> }
>
> int mt7615_set_channel(struct mt7615_phy *phy)
> @@ -336,8 +350,11 @@ int mt7615_set_channel(struct mt7615_phy *phy)
>
> mt7615_mac_set_timing(phy);
> ret = mt7615_dfs_init_radar_detector(phy);
> - if (ret)
> + if (ret < 0) {
> + dev_err(dev->mt76.dev, "set-channel: dfs-init-radar-detector failed: %d",
> + ret);
> goto out;
> + }
>
> mt7615_mac_cca_stats_reset(phy);
> ret = mt7615_mcu_set_sku_en(phy, true);
> diff --git a/drivers/net/wireless/mediatek/mt76/mt7615/mt7615.h b/drivers/net/wireless/mediatek/mt76/mt7615/mt7615.h
> index 58a98b5c0cbc..6a3209439492 100644
> --- a/drivers/net/wireless/mediatek/mt76/mt7615/mt7615.h
> +++ b/drivers/net/wireless/mediatek/mt76/mt7615/mt7615.h
> @@ -164,8 +164,9 @@ struct mt7615_phy {
> u8 slottime;
>
> u8 chfreq;
> - u8 rdd_state;
> - int dfs_state;
> + u8 rdd_state; /* radar detection started bitfield */
> + enum nl80211_chan_width dfs_ch_width;
> + u32 dfs_center_freq;
>
> u32 rx_ampdu_ts;
> u32 ampdu_ref;
> @@ -540,6 +541,7 @@ int mt7615_mcu_set_sku_en(struct mt7615_phy *phy, bool enable);
> int mt7615_mcu_apply_rx_dcoc(struct mt7615_phy *phy);
> int mt7615_mcu_apply_tx_dpd(struct mt7615_phy *phy);
> int mt7615_dfs_init_radar_detector(struct mt7615_phy *phy);
> +int mt7615_dfs_stop_radar_detector(struct mt7615_phy *phy, bool ext_phy);
>
> int mt7615_mcu_set_roc(struct mt7615_phy *phy, struct ieee80211_vif *vif,
> struct ieee80211_channel *chan, int duration);
> --
> 2.20.1
>
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
[-- Attachment #2: Type: text/plain, Size: 170 bytes --]
_______________________________________________
Linux-mediatek mailing list
Linux-mediatek@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-mediatek
WARNING: multiple messages have this Message-ID (diff)
From: Lorenzo Bianconi <lorenzo.bianconi@redhat.com>
To: Chad Monroe <chad@monroe.io>
Cc: Felix Fietkau <nbd@nbd.name>,
Johannes Berg <johannes.berg@intel.com>,
Shayne Chen <shayne.chen@mediatek.com>,
Evelyn Tsai <evelyn.tsai@mediatek.com>,
Ryder Lee <ryder.lee@mediatek.com>,
linux-wireless@vger.kernel.org,
linux-mediatek@lists.infradead.org,
Ben Greear <greearb@candelatech.com>
Subject: Re: [PATCH 2/2] mt76: mt7615: fix radar detector logic
Date: Fri, 27 Aug 2021 20:44:47 +0200 [thread overview]
Message-ID: <YSkyn9eqQKLXcncf@lore-desk> (raw)
In-Reply-To: <4a4bb98aa6dd1c7f4671d11a901fb8cf35f49308.1630081048.git.chad@monroe.io>
[-- Attachment #1: Type: text/plain, Size: 11874 bytes --]
> Before this patch, if AP went from ch 100 to ch 36, the radar detector
> logic in the firmware was not being disabled. This made the AP appear
> to be up, but no beacons were seen on air until module reload or
> reboot.
>
> To reproduce this, I change hostapd.conf and restart hostapd. Others
> on openwrt used their UI to make changes and problem was seen, but
> stil others changed channels in some other way and/or had some other
> difference and could *not* reproduce it. So, something perhaps a
> bit subtle.
>
> To fix the problem, stop depending on comparing dfs_state, store last
> freq/bandwidth to detect changes in that, and streamline code that
> checks to enable/disable radar detection. And add in error checking
> and dev_dbg logic so one can see what is actually happening if need
> to debug this again.
>
> Signed-off-by: Ben Greear <greearb@candelatech.com>
> Signed-off-by: Chad Monroe <chad@monroe.io>
> ---
> .../net/wireless/mediatek/mt76/mt7615/init.c | 12 ++-
> .../net/wireless/mediatek/mt76/mt7615/mac.c | 102 ++++++++++++------
> .../net/wireless/mediatek/mt76/mt7615/main.c | 25 ++++-
> .../wireless/mediatek/mt76/mt7615/mt7615.h | 6 +-
> 4 files changed, 104 insertions(+), 41 deletions(-)
>
> diff --git a/drivers/net/wireless/mediatek/mt76/mt7615/init.c b/drivers/net/wireless/mediatek/mt76/mt7615/init.c
> index 05235a60d413..23dde13c2703 100644
> --- a/drivers/net/wireless/mediatek/mt76/mt7615/init.c
> +++ b/drivers/net/wireless/mediatek/mt76/mt7615/init.c
> @@ -333,6 +333,7 @@ mt7615_regd_notifier(struct wiphy *wiphy,
> struct mt76_phy *mphy = hw->priv;
> struct mt7615_phy *phy = mphy->priv;
> struct cfg80211_chan_def *chandef = &mphy->chandef;
> + int ret;
>
> memcpy(dev->mt76.alpha2, request->alpha2, sizeof(dev->mt76.alpha2));
> dev->mt76.region = request->dfs_region;
> @@ -342,14 +343,18 @@ mt7615_regd_notifier(struct wiphy *wiphy,
>
> mt7615_mutex_acquire(dev);
>
> - if (chandef->chan->flags & IEEE80211_CHAN_RADAR)
> - mt7615_dfs_init_radar_detector(phy);
> -
> if (mt7615_firmware_offload(phy->dev)) {
> mt76_connac_mcu_set_channel_domain(mphy);
> mt76_connac_mcu_set_rate_txpower(mphy);
> }
>
> + if (chandef->chan->flags & IEEE80211_CHAN_RADAR) {
> + ret = mt7615_dfs_init_radar_detector(phy);
> + if (ret < 0)
> + dev_err(dev->mt76.dev, "init-wifi: dfs-init-radar-detector failed: %d",
> + ret);
I guess this chunck does not make any difference since mt7663 does not support
dfs (w offload fw).
> + }
> +
> mt7615_mutex_release(dev);
> }
>
> @@ -550,7 +555,6 @@ void mt7615_init_device(struct mt7615_dev *dev)
> dev->pm.stats.last_wake_event = jiffies;
> dev->pm.stats.last_doze_event = jiffies;
> mt7615_cap_dbdc_disable(dev);
> - dev->phy.dfs_state = -1;
>
> #ifdef CONFIG_NL80211_TESTMODE
> dev->mt76.test_ops = &mt7615_testmode_ops;
> diff --git a/drivers/net/wireless/mediatek/mt76/mt7615/mac.c b/drivers/net/wireless/mediatek/mt76/mt7615/mac.c
> index 78b55e872da0..571fa73baa76 100644
> --- a/drivers/net/wireless/mediatek/mt76/mt7615/mac.c
> +++ b/drivers/net/wireless/mediatek/mt76/mt7615/mac.c
> @@ -2101,14 +2101,29 @@ void mt7615_tx_token_put(struct mt7615_dev *dev)
> }
> EXPORT_SYMBOL_GPL(mt7615_tx_token_put);
>
> -static void mt7615_dfs_stop_radar_detector(struct mt7615_phy *phy)
> +int mt7615_dfs_stop_radar_detector(struct mt7615_phy *phy, bool ext_phy)
> {
> struct mt7615_dev *dev = phy->dev;
> + int err;
> +
> + dev_dbg(dev->mt76.dev, "dfs-stop-radar-detector, rdd-state: 0x%x",
> + phy->rdd_state);
> +
> + err = mt7615_mcu_rdd_cmd(dev, RDD_NORMAL_START, ext_phy,
> + MT_RX_SEL0, 0);
> + if (err < 0) {
> + dev_err(dev->mt76.dev, "mcu-rdd-cmd RDD_NORMAL_START failed: %d",
> + err);
> + /* I think best to carry on, even if we have an error here. */
> + }
I guess you just moved mt7615_mcu_rdd_cmd(dev, RDD_NORMAL_START, ..) here but
the logic is the same as before, right? If so I think we can drop it
>
> if (phy->rdd_state & BIT(0))
> mt7615_mcu_rdd_cmd(dev, RDD_STOP, 0, MT_RX_SEL0, 0);
> if (phy->rdd_state & BIT(1))
> mt7615_mcu_rdd_cmd(dev, RDD_STOP, 1, MT_RX_SEL0, 0);
> + phy->rdd_state = 0;
> +
> + return err;
> }
>
> static int mt7615_dfs_start_rdd(struct mt7615_dev *dev, int chain)
> @@ -2116,11 +2131,14 @@ static int mt7615_dfs_start_rdd(struct mt7615_dev *dev, int chain)
> int err;
>
> err = mt7615_mcu_rdd_cmd(dev, RDD_START, chain, MT_RX_SEL0, 0);
> +
> + dev_dbg(dev->mt76.dev, "dfs-start-rdd, RDD_START rv: %d", err);
> if (err < 0)
> return err;
>
> - return mt7615_mcu_rdd_cmd(dev, RDD_DET_MODE, chain,
> - MT_RX_SEL0, 1);
> + err = mt7615_mcu_rdd_cmd(dev, RDD_DET_MODE, chain, MT_RX_SEL0, 1);
> + dev_dbg(dev->mt76.dev, "dfs-start-rdd, RDD_DET_MODE rv: %d", err);
> + return err;
> }
>
> static int mt7615_dfs_start_radar_detector(struct mt7615_phy *phy)
> @@ -2227,48 +2245,70 @@ int mt7615_dfs_init_radar_detector(struct mt7615_phy *phy)
> if (is_mt7663(&dev->mt76))
> return 0;
>
> - if (dev->mt76.region == NL80211_DFS_UNSET) {
> - phy->dfs_state = -1;
> - if (phy->rdd_state)
> - goto stop;
> + dev_dbg(dev->mt76.dev,
> + "dfs-init-radar-detector, region: %d freq: %d chandef dfs-state: %d",
> + dev->mt76.region, chandef->chan->center_freq,
> + chandef->chan->dfs_state);
>
> + if (test_bit(MT76_SCANNING, &phy->mt76->state)) {
> + dev_dbg(dev->mt76.dev, "init-radar, was scanning, no change.\n");
> return 0;
> }
>
> - if (test_bit(MT76_SCANNING, &phy->mt76->state))
> - return 0;
> + if (dev->mt76.region == NL80211_DFS_UNSET) {
> + dev_dbg(dev->mt76.dev,
> + "dfs-init-radar, region is UNSET, disable radar.");
> + goto stop;
> + }
> +
> + if (!(chandef->chan->flags & IEEE80211_CHAN_RADAR)) {
> + dev_dbg(dev->mt76.dev,
> + "dfs-init-radar, chandef does not want radar.");
> + goto stop;
> + }
> +
> + ieee80211_iterate_active_interfaces(phy->mt76->hw,
> + IEEE80211_IFACE_ITER_RESUME_ALL,
> + mt7615_vif_counts, &counts);
> +
> + if (!(counts.ap + counts.adhoc + counts.mesh)) {
> + /* No beaconning interfaces, do not start CAC */
> + dev_dbg(dev->mt76.dev,
> + "dfs-init-radar, no AP/Mesh/Adhoc vifs active, stop radar.");
> + goto stop;
> + }
>
> - if (phy->dfs_state == chandef->chan->dfs_state)
> + /* At this point, we need radar detection, see if we have started
> + * it already.
> + */
> + if (phy->rdd_state) {
Are you sure this approach works with DBDC? in this case phy->rdd_state is not
0 but the radar detection has not started on this phy.
> + if (chandef->chan->dfs_state == NL80211_DFS_AVAILABLE) {
> + /* CAC is already complete. */
> + dev_dbg(dev->mt76.dev,
> + "init-radar, RADAR started and DFS state is AVAILABLE, call RDD_CAC_END");
> + return mt7615_mcu_rdd_cmd(dev, RDD_CAC_END, ext_phy,
> + MT_RX_SEL0, 0);
> + }
> + dev_dbg(dev->mt76.dev,
> + "init-radar, rdd_state indicates RADAR already started,"
> + " DFS state: %d not YET available, rdd_state: 0x%x",
> + chandef->chan->dfs_state, phy->rdd_state);
> return 0;
> + }
>
> err = mt7615_dfs_init_radar_specs(phy);
> if (err < 0) {
> - phy->dfs_state = -1;
> + dev_err(dev->mt76.dev, "dfs-init-radar-specs failed: %d",
> + err);
> goto stop;
> }
>
> - phy->dfs_state = chandef->chan->dfs_state;
> -
> - if (chandef->chan->flags & IEEE80211_CHAN_RADAR) {
> - if (chandef->chan->dfs_state != NL80211_DFS_AVAILABLE) {
> - ieee80211_iterate_active_interfaces(phy->mt76->hw,
> - IEEE80211_IFACE_ITER_RESUME_ALL,
> - mt7615_vif_counts, &counts);
> - if (counts.ap + counts.adhoc + counts.mesh)
> - mt7615_dfs_start_radar_detector(phy);
> - return 0;
> - }
> - return mt7615_mcu_rdd_cmd(dev, RDD_CAC_END, ext_phy,
> - MT_RX_SEL0, 0);
> - }
> + err = mt7615_dfs_start_radar_detector(phy);
> + dev_dbg(dev->mt76.dev, "dfs-start-radar-detector rv: %d", err);
> + return err;
>
> stop:
> - err = mt7615_mcu_rdd_cmd(dev, RDD_NORMAL_START, ext_phy, MT_RX_SEL0, 0);
> - if (err < 0)
> - return err;
> -
> - mt7615_dfs_stop_radar_detector(phy);
> - return 0;
> + return mt7615_dfs_stop_radar_detector(phy, ext_phy);
> }
>
> int mt7615_mac_set_beacon_filter(struct mt7615_phy *phy,
> diff --git a/drivers/net/wireless/mediatek/mt76/mt7615/main.c b/drivers/net/wireless/mediatek/mt76/mt7615/main.c
> index 7154acf3eb9b..484c8803726f 100644
> --- a/drivers/net/wireless/mediatek/mt76/mt7615/main.c
> +++ b/drivers/net/wireless/mediatek/mt76/mt7615/main.c
> @@ -291,6 +291,8 @@ static void mt7615_init_dfs_state(struct mt7615_phy *phy)
> struct mt76_phy *mphy = phy->mt76;
> struct ieee80211_hw *hw = mphy->hw;
> struct cfg80211_chan_def *chandef = &hw->conf.chandef;
> + struct mt7615_dev *dev = phy->dev;
> + bool ext_phy = phy != &dev->phy;
>
> if (hw->conf.flags & IEEE80211_CONF_OFFCHANNEL)
> return;
> @@ -298,11 +300,23 @@ static void mt7615_init_dfs_state(struct mt7615_phy *phy)
> if (!(chandef->chan->flags & IEEE80211_CHAN_RADAR))
> return;
>
> - if (mphy->chandef.chan->center_freq == chandef->chan->center_freq &&
> - mphy->chandef.width == chandef->width)
> + if (phy->dfs_center_freq == chandef->chan->center_freq &&
> + phy->dfs_ch_width == chandef->width)
> return;
Why do we need phy->dfs_center_freq and phy->dfs_ch_width? if I read correctly
the code mphy->chandef.* is updated in mt76_set_channel() so we do not need
them for thec check above, right?
Regards,
Lorenzo
>
> - phy->dfs_state = -1;
> + /* We are being moved to a new frequency/bw, still on DFS. Stop
> + * any existing DFS, then will start it again in the
> + * init-radar-detector logic.
> + */
> + if (phy->rdd_state) {
> + dev_dbg(dev->mt76.dev,
> + "init-dfs-state, channel changed, old: %d:%d new: %d:%d, stopping radar.",
> + phy->dfs_center_freq, phy->dfs_ch_width,
> + chandef->chan->center_freq, chandef->width);
> + mt7615_dfs_stop_radar_detector(phy, ext_phy);
> + }
> + phy->dfs_center_freq = chandef->chan->center_freq;
> + phy->dfs_ch_width = chandef->width;
> }
>
> int mt7615_set_channel(struct mt7615_phy *phy)
> @@ -336,8 +350,11 @@ int mt7615_set_channel(struct mt7615_phy *phy)
>
> mt7615_mac_set_timing(phy);
> ret = mt7615_dfs_init_radar_detector(phy);
> - if (ret)
> + if (ret < 0) {
> + dev_err(dev->mt76.dev, "set-channel: dfs-init-radar-detector failed: %d",
> + ret);
> goto out;
> + }
>
> mt7615_mac_cca_stats_reset(phy);
> ret = mt7615_mcu_set_sku_en(phy, true);
> diff --git a/drivers/net/wireless/mediatek/mt76/mt7615/mt7615.h b/drivers/net/wireless/mediatek/mt76/mt7615/mt7615.h
> index 58a98b5c0cbc..6a3209439492 100644
> --- a/drivers/net/wireless/mediatek/mt76/mt7615/mt7615.h
> +++ b/drivers/net/wireless/mediatek/mt76/mt7615/mt7615.h
> @@ -164,8 +164,9 @@ struct mt7615_phy {
> u8 slottime;
>
> u8 chfreq;
> - u8 rdd_state;
> - int dfs_state;
> + u8 rdd_state; /* radar detection started bitfield */
> + enum nl80211_chan_width dfs_ch_width;
> + u32 dfs_center_freq;
>
> u32 rx_ampdu_ts;
> u32 ampdu_ref;
> @@ -540,6 +541,7 @@ int mt7615_mcu_set_sku_en(struct mt7615_phy *phy, bool enable);
> int mt7615_mcu_apply_rx_dcoc(struct mt7615_phy *phy);
> int mt7615_mcu_apply_tx_dpd(struct mt7615_phy *phy);
> int mt7615_dfs_init_radar_detector(struct mt7615_phy *phy);
> +int mt7615_dfs_stop_radar_detector(struct mt7615_phy *phy, bool ext_phy);
>
> int mt7615_mcu_set_roc(struct mt7615_phy *phy, struct ieee80211_vif *vif,
> struct ieee80211_channel *chan, int duration);
> --
> 2.20.1
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
next prev parent reply other threads:[~2021-08-27 18:45 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-27 17:06 [PATCH 1/2] mt76: mt7615: fix STA mode connection on DFS channels Chad Monroe
2021-08-27 17:06 ` Chad Monroe
2021-08-27 17:06 ` [PATCH 2/2] mt76: mt7615: fix radar detector logic Chad Monroe
2021-08-27 17:06 ` Chad Monroe
2021-08-27 18:44 ` Lorenzo Bianconi [this message]
2021-08-27 18:44 ` Lorenzo Bianconi
2021-08-27 18:12 ` [PATCH 1/2] mt76: mt7615: fix STA mode connection on DFS channels Lorenzo Bianconi
2021-08-27 18:12 ` Lorenzo Bianconi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YSkyn9eqQKLXcncf@lore-desk \
--to=lorenzo.bianconi@redhat.com \
--cc=chad@monroe.io \
--cc=evelyn.tsai@mediatek.com \
--cc=greearb@candelatech.com \
--cc=johannes.berg@intel.com \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-wireless@vger.kernel.org \
--cc=nbd@nbd.name \
--cc=ryder.lee@mediatek.com \
--cc=shayne.chen@mediatek.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.