Search Linux Wireless

Re: [PATCH 2/6] wifi: mt76: mt7915: Move rxfilter logic into central location.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Fri, 2023-04-28 at 13:49 -0700, greearb@xxxxxxxxxxxxxxx wrote:
> External email : Please do not click links or open attachments until
> you have verified the sender or the content.
> 
> 
> From: Ben Greear <greearb@xxxxxxxxxxxxxxx>
> 
> And ensure monitor mode is taken into account when calculating the
> filter.
> 
> Enable RMAC_TOP_TF_SNIFFER when in promisc mode.
> 
> Signed-off-by: Ben Greear <greearb@xxxxxxxxxxxxxxx>
> ---
>  .../net/wireless/mediatek/mt76/mt7915/main.c  | 51 ++++++++++++++---
> --
>  .../wireless/mediatek/mt76/mt7915/mt7915.h    |  2 +
>  .../net/wireless/mediatek/mt76/mt7915/regs.h  |  3 ++
>  3 files changed, 44 insertions(+), 12 deletions(-)
> 
> diff --git a/drivers/net/wireless/mediatek/mt76/mt7915/main.c
> b/drivers/net/wireless/mediatek/mt76/mt7915/main.c
> index 7566db0cf523..7ec9f45cfa15 100644
> --- a/drivers/net/wireless/mediatek/mt76/mt7915/main.c
> +++ b/drivers/net/wireless/mediatek/mt76/mt7915/main.c
> @@ -8,6 +8,11 @@
>  #include "mt7915.h"
>  #include "mcu.h"
> 
> +static void __mt7915_configure_filter(struct ieee80211_hw *hw,
> +                                     unsigned int changed_flags,
> +                                     unsigned int *total_flags,
> +                                     u64 multicast);
> +
>  static bool mt7915_dev_running(struct mt7915_dev *dev)
>  {
>         struct mt7915_phy *phy;
> @@ -481,16 +486,15 @@ static int mt7915_config(struct ieee80211_hw
> *hw, u32 changed)
>         if (changed & IEEE80211_CONF_CHANGE_MONITOR) {
>                 bool enabled = !!(hw->conf.flags &
> IEEE80211_CONF_MONITOR);
>                 bool band = phy->mt76->band_idx;
> +               u32 total_flags = phy->mac80211_rxfilter_flags;
> +               u64 multicast = 0; /* not used by this driver
> currently. */
> 
> -               if (!enabled)
> -                       phy->rxfilter |= MT_WF_RFCR_DROP_OTHER_UC;
> -               else
> -                       phy->rxfilter &= ~MT_WF_RFCR_DROP_OTHER_UC;
> +               phy->monitor_enabled = enabled;
> 
>                 mt76_rmw_field(dev, MT_DMA_DCR0(band),
> MT_DMA_DCR0_RXD_G5_EN,
>                                enabled);
>                 mt76_testmode_reset(phy->mt76, true);
> -               mt76_wr(dev, MT_WF_RFCR(band), phy->rxfilter);
> +               __mt7915_configure_filter(hw, 0, &total_flags,
> multicast);
>         }
> 
>         mutex_unlock(&dev->mt76.mutex);
> @@ -512,10 +516,10 @@ mt7915_conf_tx(struct ieee80211_hw *hw, struct
> ieee80211_vif *vif,
>         return 0;
>  }
> 
> -static void mt7915_configure_filter(struct ieee80211_hw *hw,
> -                                   unsigned int changed_flags,
> -                                   unsigned int *total_flags,
> -                                   u64 multicast)
> +static void __mt7915_configure_filter(struct ieee80211_hw *hw,
> +                                     unsigned int changed_flags,
> +                                     unsigned int *total_flags,
> +                                     u64 multicast)
>  {
>         struct mt7915_dev *dev = mt7915_hw_dev(hw);
>         struct mt7915_phy *phy = mt7915_hw_phy(hw);
> @@ -526,6 +530,8 @@ static void mt7915_configure_filter(struct
> ieee80211_hw *hw,
>                         MT_WF_RFCR1_DROP_CFEND |
>                         MT_WF_RFCR1_DROP_CFACK;
>         u32 flags = 0;
> +       bool is_promisc = *total_flags & FIF_CONTROL || phy-
> >monitor_vif ||
> +               phy->monitor_enabled;
> 
>  #define MT76_FILTER(_flag, _hw) do
> {                                   \
>                 flags |= *total_flags &
> FIF_##_flag;                    \
> @@ -533,7 +539,7 @@ static void mt7915_configure_filter(struct
> ieee80211_hw *hw,
>                 phy->rxfilter |= !(flags & FIF_##_flag) *
> (_hw);        \
>         } while (0)
> 
> -       mutex_lock(&dev->mt76.mutex);
> +       phy->mac80211_rxfilter_flags = *total_flags; /* save
> requested flags for later */
> 
>         phy->rxfilter &= ~(MT_WF_RFCR_DROP_OTHER_BSS |
>                            MT_WF_RFCR_DROP_OTHER_BEACON |
> @@ -547,6 +553,8 @@ static void mt7915_configure_filter(struct
> ieee80211_hw *hw,
>                            MT_WF_RFCR_DROP_UNWANTED_CTL |
>                            MT_WF_RFCR_DROP_STBC_MULTI);
> 
> +       phy->rxfilter |= MT_WF_RFCR_DROP_OTHER_UC;
> +
>         MT76_FILTER(OTHER_BSS, MT_WF_RFCR_DROP_OTHER_TIM |
>                                MT_WF_RFCR_DROP_A3_MAC |
>                                MT_WF_RFCR_DROP_A3_BSSID);
> @@ -557,14 +565,33 @@ static void mt7915_configure_filter(struct
> ieee80211_hw *hw,
>                              MT_WF_RFCR_DROP_RTS |
>                              MT_WF_RFCR_DROP_CTL_RSV |
>                              MT_WF_RFCR_DROP_NDPA);
> +       if (is_promisc)
> +               phy->rxfilter &= ~MT_WF_RFCR_DROP_OTHER_UC;
> 
>         *total_flags = flags;
>         mt76_wr(dev, MT_WF_RFCR(band), phy->rxfilter);
> 
> -       if (*total_flags & FIF_CONTROL)
> +       if (is_promisc) {
>                 mt76_clear(dev, MT_WF_RFCR1(band), ctl_flags);
> -       else
> +               mt76_set(dev, MT_WF_RMAC_TOP_TF_PARSER(band),
> +                        MT_WF_RMAC_TOP_TF_SNIFFER);
> +       } else {
>                 mt76_set(dev, MT_WF_RFCR1(band), ctl_flags);
> +               mt76_clear(dev, MT_WF_RMAC_TOP_TF_PARSER(band),
> +                          MT_WF_RMAC_TOP_TF_SNIFFER);
> +       }
> +}
> +
> +static void mt7915_configure_filter(struct ieee80211_hw *hw,
> +                                   unsigned int changed_flags,
> +                                   unsigned int *total_flags,
> +                                   u64 multicast)
> +{
> +       struct mt7915_dev *dev = mt7915_hw_dev(hw);
> +
> +       mutex_lock(&dev->mt76.mutex);
> +
> +       __mt7915_configure_filter(hw, changed_flags, total_flags,
> multicast);
> 
>         mutex_unlock(&dev->mt76.mutex);
>  }
> diff --git a/drivers/net/wireless/mediatek/mt76/mt7915/mt7915.h
> b/drivers/net/wireless/mediatek/mt76/mt7915/mt7915.h
> index b3ead3530740..06f98e5cd95e 100644
> --- a/drivers/net/wireless/mediatek/mt76/mt7915/mt7915.h
> +++ b/drivers/net/wireless/mediatek/mt76/mt7915/mt7915.h
> @@ -244,6 +244,8 @@ struct mt7915_phy {
>         struct ieee80211_vif *monitor_vif;
> 
>         struct thermal_cooling_device *cdev;
> +       u32 mac80211_rxfilter_flags;
> +       u8 monitor_enabled;
>         u8 cdev_state;
>         u8 throttle_state;
>         u32 throttle_temp[2]; /* 0: critical high, 1: maximum */
> 
I prefer something like this so that we don't need a monitor_enabled?
 if (changed & IEEE80211_CONF_CHANGE_MONITOR)
	mt7915_set_monitor(phy, !!(hw->conf.flags &&
IEEE80211_CONF_MONITOR));

Ryder





[Index of Archives]     [Linux Host AP]     [ATH6KL]     [Linux Wireless Personal Area Network]     [Linux Bluetooth]     [Wireless Regulations]     [Linux Netdev]     [Kernel Newbies]     [Linux Kernel]     [IDE]     [Git]     [Netfilter]     [Bugtraq]     [Yosemite Hiking]     [MIPS Linux]     [ARM Linux]     [Linux RAID]

  Powered by Linux