Skip to content
Permalink
Wang-Haojun/dr…
Switch branches/tags

Commits on Oct 22, 2021

  1. drivers:net:wireless:mediatek: fix build warning

    drivers/net/wireless/mediatek/mt76/mt7921/main.c: In function 'mt7921_get_et_stats':
    drivers/net/wireless/mediatek/mt76/mt7921/main.c:1024:26: warning: format '%lu' expects argument of type 'long unsigned int', but argument 4 has type 'unsigned int' [-Wformat=]
       dev_err(dev->mt76.dev, "ei: %d  SSTATS_LEN: %lu",
    
    Signed-off-by: Wang Haojun <wanghaojun@loongson.cn>
    Liuer-Jiang authored and intel-lab-lkp committed Oct 22, 2021

Commits on Oct 20, 2021

  1. Merge tag 'mt76-for-kvalo-2021-10-20' of https://github.com/nbd168/wi…

    …reless
    
    mt76 patches for 5.16
    
    * various bugfixes
    * endian fixes
    * mt7921 aspm support
    * cleanup
    * mt7921 testmode support
    * rate handling fixes
    * tx status fixes/improvements
    * mt7921 power management improvements
    * mt7915 LED support
    * DBDC fixes
    * mt7921 6GHz support
    * support for eeprom data in DT
    * mt7915 TWT support
    * mt7915 txbf + MU-MIMO improvements
    
    # gpg: Signature made Wed 20 Oct 2021 12:24:46 PM EEST
    # gpg:                using DSA key D77D141D02A76EF5
    # gpg: Good signature from "Felix Fietkau <nbd@nbd.name>" [unknown]
    # gpg: WARNING: This key is not certified with a trusted signature!
    # gpg:          There is no indication that the signature belongs to the owner.
    # Primary key fingerprint: 75D1 1A7D 91A7 710F 4900  42EF D77D 141D 02A7 6EF5
    Kalle Valo committed Oct 20, 2021
  2. zd1201: use eth_hw_addr_set()

    Commit 406f42f ("net-next: When a bond have a massive amount
    of VLANs...") introduced a rbtree for faster Ethernet address look
    up. To maintain netdev->dev_addr in this tree we need to make all
    the writes to it got through appropriate helpers.
    
    Signed-off-by: Jakub Kicinski <kuba@kernel.org>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/20211018235021.1279697-16-kuba@kernel.org
    Jakub Kicinski authored and Kalle Valo committed Oct 20, 2021
  3. wl3501_cs: use eth_hw_addr_set()

    Commit 406f42f ("net-next: When a bond have a massive amount
    of VLANs...") introduced a rbtree for faster Ethernet address look
    up. To maintain netdev->dev_addr in this tree we need to make all
    the writes to it got through appropriate helpers.
    
    Signed-off-by: Jakub Kicinski <kuba@kernel.org>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/20211018235021.1279697-15-kuba@kernel.org
    Jakub Kicinski authored and Kalle Valo committed Oct 20, 2021
  4. ray_cs: use eth_hw_addr_set()

    Commit 406f42f ("net-next: When a bond have a massive amount
    of VLANs...") introduced a rbtree for faster Ethernet address look
    up. To maintain netdev->dev_addr in this tree we need to make all
    the writes to it got through appropriate helpers.
    
    Signed-off-by: Jakub Kicinski <kuba@kernel.org>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/20211018235021.1279697-14-kuba@kernel.org
    Jakub Kicinski authored and Kalle Valo committed Oct 20, 2021
  5. wilc1000: use eth_hw_addr_set()

    Commit 406f42f ("net-next: When a bond have a massive amount
    of VLANs...") introduced a rbtree for faster Ethernet address look
    up. To maintain netdev->dev_addr in this tree we need to make all
    the writes to it got through appropriate helpers.
    
    Signed-off-by: Jakub Kicinski <kuba@kernel.org>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/20211018235021.1279697-13-kuba@kernel.org
    Jakub Kicinski authored and Kalle Valo committed Oct 20, 2021
  6. hostap: use eth_hw_addr_set()

    Commit 406f42f ("net-next: When a bond have a massive amount
    of VLANs...") introduced a rbtree for faster Ethernet address look
    up. To maintain netdev->dev_addr in this tree we need to make all
    the writes to it got through appropriate helpers.
    
    Signed-off-by: Jakub Kicinski <kuba@kernel.org>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/20211018235021.1279697-11-kuba@kernel.org
    Jakub Kicinski authored and Kalle Valo committed Oct 20, 2021
  7. ipw2200: prepare for const netdev->dev_addr

    netdev->dev_addr will be come const soon, constify the argument
    to command send to avoid compiler warnings.
    
    Signed-off-by: Jakub Kicinski <kuba@kernel.org>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/20211018235021.1279697-10-kuba@kernel.org
    Jakub Kicinski authored and Kalle Valo committed Oct 20, 2021
  8. airo: use eth_hw_addr_set()

    Commit 406f42f ("net-next: When a bond have a massive amount
    of VLANs...") introduced a rbtree for faster Ethernet address look
    up. To maintain netdev->dev_addr in this tree we need to make all
    the writes to it got through appropriate helpers.
    
    Use dev_addr_set() to match the existing logic.
    setup_card() is always passed netdev->dev_addr, so pass the netdev
    pointer instead and assign the address using a helper there.
    
    Signed-off-by: Jakub Kicinski <kuba@kernel.org>
    Reviewed-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/20211018235021.1279697-9-kuba@kernel.org
    Jakub Kicinski authored and Kalle Valo committed Oct 20, 2021
  9. brcmfmac: prepare for const netdev->dev_addr

    netdev->dev_addr will become const soon. Make sure local
    variables maintain that qualifier.
    
    Signed-off-by: Jakub Kicinski <kuba@kernel.org>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/20211018235021.1279697-8-kuba@kernel.org
    Jakub Kicinski authored and Kalle Valo committed Oct 20, 2021
  10. atmel: use eth_hw_addr_set()

    Commit 406f42f ("net-next: When a bond have a massive amount
    of VLANs...") introduced a rbtree for faster Ethernet address look
    up. To maintain netdev->dev_addr in this tree we need to make all
    the writes to it got through appropriate helpers.
    
    Use a buffer on the stack. Note that atmel_get_mib() is a wrapper
    around atmel_copy_to_host(). For the to device direction we just
    need to make sure functions respect argument being cost.
    
    Signed-off-by: Jakub Kicinski <kuba@kernel.org>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/20211018235021.1279697-7-kuba@kernel.org
    Jakub Kicinski authored and Kalle Valo committed Oct 20, 2021
  11. wil6210: use eth_hw_addr_set()

    Commit 406f42f ("net-next: When a bond have a massive amount
    of VLANs...") introduced a rbtree for faster Ethernet address look
    up. To maintain netdev->dev_addr in this tree we need to make all
    the writes to it got through appropriate helpers.
    
    Do the special encoding on the stack, then copy the address.
    
    Signed-off-by: Jakub Kicinski <kuba@kernel.org>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/20211018235021.1279697-6-kuba@kernel.org
    Jakub Kicinski authored and Kalle Valo committed Oct 20, 2021
  12. ath6kl: use eth_hw_addr_set()

    Commit 406f42f ("net-next: When a bond have a massive amount
    of VLANs...") introduced a rbtree for faster Ethernet address look
    up. To maintain netdev->dev_addr in this tree we need to make all
    the writes to it got through appropriate helpers.
    
    Do the special encoding on the stack, then copy the address.
    
    Signed-off-by: Jakub Kicinski <kuba@kernel.org>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/20211018235021.1279697-5-kuba@kernel.org
    Jakub Kicinski authored and Kalle Valo committed Oct 20, 2021
  13. wireless: use eth_hw_addr_set() for dev->addr_len cases

    Convert all WiFi drivers from memcpy(... dev->addr_len)
    to eth_hw_addr_set():
    
      @@
      expression dev, np;
      @@
      - memcpy(dev->dev_addr, np, dev->addr_len)
      + eth_hw_addr_set(dev, np)
    
    Manually checked the netdevs are allocated with alloc_etherdev(),
    so dev->addr_len must be equal to ETH_ALEN.
    
    Signed-off-by: Jakub Kicinski <kuba@kernel.org>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/20211018235021.1279697-4-kuba@kernel.org
    Jakub Kicinski authored and Kalle Valo committed Oct 20, 2021
  14. wireless: use eth_hw_addr_set() instead of ether_addr_copy()

    Commit 406f42f ("net-next: When a bond have a massive amount
    of VLANs...") introduced a rbtree for faster Ethernet address look
    up. To maintain netdev->dev_addr in this tree we need to make all
    the writes to it got through appropriate helpers.
    
    Convert wireless from ether_addr_copy() to eth_hw_addr_set():
    
      @@
      expression dev, np;
      @@
      - ether_addr_copy(dev->dev_addr, np)
      + eth_hw_addr_set(dev, np)
    
    Signed-off-by: Jakub Kicinski <kuba@kernel.org>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/20211018235021.1279697-3-kuba@kernel.org
    Jakub Kicinski authored and Kalle Valo committed Oct 20, 2021
  15. wireless: use eth_hw_addr_set()

    Convert all WiFi drivers from memcpy(... ETH_ADDR)
    to eth_hw_addr_set():
    
      @@
      expression dev, np;
      @@
      - memcpy(dev->dev_addr, np, ETH_ALEN)
      + eth_hw_addr_set(dev, np)
    
    Signed-off-by: Jakub Kicinski <kuba@kernel.org>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/20211018235021.1279697-2-kuba@kernel.org
    Jakub Kicinski authored and Kalle Valo committed Oct 20, 2021
  16. iwlwifi: cfg: set low-latency-xtal for some integrated So devices

    The integrated So devices covered by the iwl_so_long_latency_trans_cfg
    configuration should all have low-latency-xtal enabled, so do that.
    While at it, remove the TODO, I've checked the other values as well.
    
    Signed-off-by: Johannes Berg <johannes.berg@intel.com>
    Fixes: 6f60fb0 ("iwlwifi: move SnJ and So rules to the new tables")
    Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/iwlwifi.20211016114029.8b5480113f53.I80b5b4ebea84e56f3b3143fc1ee7097be8b4ae78@changeid
    jmberg-intel authored and Kalle Valo committed Oct 20, 2021
  17. iwlwifi: pnvm: read EFI data only if long enough

    If the data we get from EFI is not even long enough for
    the package struct we expect then ignore it entirely.
    
    Signed-off-by: Johannes Berg <johannes.berg@intel.com>
    Fixes: a1a6a4c ("iwlwifi: pnvm: implement reading PNVM from UEFI")
    Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/iwlwifi.20211016114029.33feba783518.I54a5cf33975d0330792b3d208b225d479e168f32@changeid
    jmberg-intel authored and Kalle Valo committed Oct 20, 2021
  18. iwlwifi: pnvm: don't kmemdup() more than we have

    We shouldn't kmemdup() more data than we have, that might
    cause the code to crash. Fix that by updating the length
    before the kmemdup.
    
    Signed-off-by: Johannes Berg <johannes.berg@intel.com>
    Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/iwlwifi.20211016114029.ab0e64c3fba9.Ic6a3295fc384750b51b4270bf0b7d94984a139f2@changeid
    jmberg-intel authored and Kalle Valo committed Oct 20, 2021
  19. iwlwifi: change all JnP to NO-160 configuration

    JnP should not have the 160 MHz.
    
    Signed-off-by: Yaara Baruch <yaara.baruch@intel.com>
    Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/iwlwifi.20211016114029.ee163f4a7513.I7f87bd969a0b038c7f3a1a962d9695ffd18c5da1@changeid
    Yaara Baruch authored and Kalle Valo committed Oct 20, 2021
  20. iwlwifi: mvm: reset PM state on unsuccessful resume

    If resume fails for some reason, we need to set the PM state
    back to normal so we're able to send commands during firmware
    reset, rather than failing all of them because we're in D3.
    
    Signed-off-by: Johannes Berg <johannes.berg@intel.com>
    Fixes: 708a39a ("iwlwifi: mvm: don't send commands during suspend\resume transition")
    Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/iwlwifi.20211016114029.7ceb9eaca9f6.If0cbef38c6d07ec1ddce125878a4bdadcb35d2c9@changeid
    jmberg-intel authored and Kalle Valo committed Oct 20, 2021
  21. Merge ath-next from git://git.kernel.org/pub/scm/linux/kernel/git/kva…

    …lo/ath.git
    
    ath.git patches for v5.16. Major changes:
    
    ath9k
    
    * add option to reset the wifi chip via debugfs
    
    * convert Device Tree bindings to the json-schema
    
    * support Device Tree ieee80211-freq-limit property to limit channels
    Kalle Valo committed Oct 20, 2021
  22. mwifiex: Deactive host sleep using HSCFG after it was activated manually

    When powersaving (so either wifi powersaving or deep sleep, depending on
    which state the firmware is in) is disabled, the way the firmware goes
    into host sleep is different: Usually the firmware implicitely enters
    host sleep on the next SLEEP event we get when we configured host sleep
    via HSCFG before. When powersaving is disabled though, there are no
    SLEEP events, the way we enter host sleep in that case is different: The
    firmware will send us a HS_ACT_REQ event and after that we "manually"
    make the firmware enter host sleep by sending it another HSCFG command
    with the action HS_ACTIVATE.
    
    Now waking up from host sleep appears to be different depending on
    whether powersaving is enabled again: When powersaving is enabled, the
    firmware implicitely leaves host sleep as soon as it wakes up and sends
    us an AWAKE event. When powersaving is disabled though, it apparently
    doesn't implicitely leave host sleep, but instead we need to send it a
    HSCFG command with the HS_CONFIGURE action and the HS_CFG_CANCEL
    condition. We didn't do that so far, which is why waking up from host
    sleep was broken when powersaving is disabled.
    
    So add some additional state to mwifiex_adapter where we keep track of
    whether host sleep was activated manually via HS_ACTIVATE, and if that
    was the case, deactivate it manually again via HS_CFG_CANCEL.
    
    Signed-off-by: Jonas Dreßler <verdre@v0yd.nl>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/20211016153244.24353-6-verdre@v0yd.nl
    jonas2515 authored and Kalle Valo committed Oct 20, 2021
  23. mwifiex: Send DELBA requests according to spec

    While looking at on-air packets using Wireshark, I noticed we're never
    setting the initiator bit when sending DELBA requests to the AP: While
    we set the bit on our del_ba_param_set bitmask, we forget to actually
    copy that bitmask over to the command struct, which means we never
    actually set the initiator bit.
    
    Fix that and copy the bitmask over to the host_cmd_ds_11n_delba command
    struct.
    
    Fixes: 5e6e3a9 ("wireless: mwifiex: initial commit for Marvell mwifiex driver")
    Signed-off-by: Jonas Dreßler <verdre@v0yd.nl>
    Acked-by: Pali Rohár <pali@kernel.org>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/20211016153244.24353-5-verdre@v0yd.nl
    jonas2515 authored and Kalle Valo committed Oct 20, 2021
  24. mwifiex: Fix an incorrect comment

    We're sending DELBA requests here, not ADDBA requests.
    
    Signed-off-by: Jonas Dreßler <verdre@v0yd.nl>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/20211016153244.24353-4-verdre@v0yd.nl
    jonas2515 authored and Kalle Valo committed Oct 20, 2021
  25. mwifiex: Log an error on command failure during key-material upload

    Sometimes the KEY_MATERIAL command can fail with the 88W8897 firmware
    (when this happens exactly seems pretty random). This appears to prevent
    the access point from starting, so it seems like a good idea to log an
    error in that case.
    
    Signed-off-by: Jonas Dreßler <verdre@v0yd.nl>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/20211016153244.24353-3-verdre@v0yd.nl
    jonas2515 authored and Kalle Valo committed Oct 20, 2021
  26. mwifiex: Don't log error on suspend if wake-on-wlan is disabled

    It's not an error if someone chooses to put their computer to sleep, not
    wanting it to wake up because the person next door has just discovered
    what a magic packet is. So change the loglevel of this annoying message
    from ERROR to INFO.
    
    Signed-off-by: Jonas Dreßler <verdre@v0yd.nl>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/20211016153244.24353-2-verdre@v0yd.nl
    jonas2515 authored and Kalle Valo committed Oct 20, 2021
  27. rtw89: remove unneeded semicolon

    Eliminate the following coccicheck warning:
    ./drivers/net/wireless/realtek/rtw89/pci.c:1348:2-3: Unneeded semicolon
    
    Reported-by: Abaci Robot <abaci@linux.alibaba.com>
    Fixes: e3ec701 ("rtw89: add Realtek 802.11ax driver")
    Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
    Acked-by: Ping-Ke Shih <pkshih@realtek.com>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/1634630094-1156-1-git-send-email-yang.lee@linux.alibaba.com
    Yang Li authored and Kalle Valo committed Oct 20, 2021
  28. rtw89: fix return value check in rtw89_cam_send_sec_key_cmd()

    Fix the return value check which testing the wrong variable
    in rtw89_cam_send_sec_key_cmd().
    
    Reported-by: Hulk Robot <hulkci@huawei.com>
    Fixes: e3ec701 ("rtw89: add Realtek 802.11ax driver")
    Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
    Acked-by: Ping-Ke Shih <pkshih@realtek.com>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/20211018033102.1813058-1-yangyingliang@huawei.com
    Yang Yingliang authored and Kalle Valo committed Oct 20, 2021
  29. mwl8k: Fix use-after-free in mwl8k_fw_state_machine()

    When the driver fails to request the firmware, it calls its error
    handler. In the error handler, the driver detaches device from driver
    first before releasing the firmware, which can cause a use-after-free bug.
    
    Fix this by releasing firmware first.
    
    The following log reveals it:
    
    [    9.007301 ] BUG: KASAN: use-after-free in mwl8k_fw_state_machine+0x320/0xba0
    [    9.010143 ] Workqueue: events request_firmware_work_func
    [    9.010830 ] Call Trace:
    [    9.010830 ]  dump_stack_lvl+0xa8/0xd1
    [    9.010830 ]  print_address_description+0x87/0x3b0
    [    9.010830 ]  kasan_report+0x172/0x1c0
    [    9.010830 ]  ? mutex_unlock+0xd/0x10
    [    9.010830 ]  ? mwl8k_fw_state_machine+0x320/0xba0
    [    9.010830 ]  ? mwl8k_fw_state_machine+0x320/0xba0
    [    9.010830 ]  __asan_report_load8_noabort+0x14/0x20
    [    9.010830 ]  mwl8k_fw_state_machine+0x320/0xba0
    [    9.010830 ]  ? mwl8k_load_firmware+0x5f0/0x5f0
    [    9.010830 ]  request_firmware_work_func+0x172/0x250
    [    9.010830 ]  ? read_lock_is_recursive+0x20/0x20
    [    9.010830 ]  ? process_one_work+0x7a1/0x1100
    [    9.010830 ]  ? request_firmware_nowait+0x460/0x460
    [    9.010830 ]  ? __this_cpu_preempt_check+0x13/0x20
    [    9.010830 ]  process_one_work+0x9bb/0x1100
    
    Signed-off-by: Zheyu Ma <zheyuma97@gmail.com>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/1634356979-6211-1-git-send-email-zheyuma97@gmail.com
    ZheyuMa authored and Kalle Valo committed Oct 20, 2021
  30. rsi: stop thread firstly in rsi_91x_init() error handling

    When fail to init coex module, free 'common' and 'adapter' directly, but
    common->tx_thread which will access 'common' and 'adapter' is running at
    the same time. That will trigger the UAF bug.
    
    ==================================================================
    BUG: KASAN: use-after-free in rsi_tx_scheduler_thread+0x50f/0x520 [rsi_91x]
    Read of size 8 at addr ffff8880076dc000 by task Tx-Thread/124777
    CPU: 0 PID: 124777 Comm: Tx-Thread Not tainted 5.15.0-rc5+ torvalds#19
    Call Trace:
     dump_stack_lvl+0xe2/0x152
     print_address_description.constprop.0+0x21/0x140
     ? rsi_tx_scheduler_thread+0x50f/0x520
     kasan_report.cold+0x7f/0x11b
     ? rsi_tx_scheduler_thread+0x50f/0x520
     rsi_tx_scheduler_thread+0x50f/0x520
    ...
    
    Freed by task 111873:
     kasan_save_stack+0x1b/0x40
     kasan_set_track+0x1c/0x30
     kasan_set_free_info+0x20/0x30
     __kasan_slab_free+0x109/0x140
     kfree+0x117/0x4c0
     rsi_91x_init+0x741/0x8a0 [rsi_91x]
     rsi_probe+0x9f/0x1750 [rsi_usb]
    
    Stop thread before free 'common' and 'adapter' to fix it.
    
    Fixes: 2108df3 ("rsi: add coex support")
    Signed-off-by: Ziyang Xuan <william.xuanziyang@huawei.com>
    Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
    Link: https://lore.kernel.org/r/20211015040335.1021546-1-william.xuanziyang@huawei.com
    Ziyang Xuan authored and Kalle Valo committed Oct 20, 2021
  31. mt76: mt7915: change max rx len limit of hw modules

    Update max rx len of some hw modules, which aligns out vendor SDK.
    In normal modes, we exchange MPDU 7991 cap with peers; however, this
    won't play a part in sniffer mode.
    To prevent packets which exceed the max MPDU size from entering specific
    rx path in hw, we need to set a proper limit to filter them out.
    
    Signed-off-by: Shayne Chen <shayne.chen@mediatek.com>
    Signed-off-by: Felix Fietkau <nbd@nbd.name>
    csyuanc authored and nbd168 committed Oct 20, 2021
  32. mt76: mt7915: fix missing HE phy cap

    Fix missing HE phy cap related to vif and starec setting.
    
    Signed-off-by: Shayne Chen <shayne.chen@mediatek.com>
    Signed-off-by: Felix Fietkau <nbd@nbd.name>
    csyuanc authored and nbd168 committed Oct 20, 2021
  33. mt76: mt7915: rework mt7915_mcu_sta_muru_tlv()

    Re-order and modify conditions for MU DL/UL and ofdma DL fields, and
    also clean up some unnecessary zero settings.
    
    Signed-off-by: Shayne Chen <shayne.chen@mediatek.com>
    Signed-off-by: Felix Fietkau <nbd@nbd.name>
    csyuanc authored and nbd168 committed Oct 20, 2021
  34. mt76: mt7915: enable HE UL MU-MIMO

    Enable HE UL MU-MIMO in sta_rec_muru, which works on both ap and station
    mode.
    
    For sending trigger frames, one of the conditions fw uses is to check if
    mib rx airtime meets the threshold.
    There's a main control of mib rx airtime report register in fw, so we
    need to enable the register by mcu cmd instead of directly writing it,
    otherwise it will still be disabled by fw.
    
    Signed-off-by: Shayne Chen <shayne.chen@mediatek.com>
    Signed-off-by: Ryder Lee <ryder.lee@mediatek.com>
    Signed-off-by: Felix Fietkau <nbd@nbd.name>
    csyuanc authored and nbd168 committed Oct 20, 2021
Older