Hi, Please pull, more information in the tag below. Kalle The following changes since commit f654e228ed6b822e87e6e6ad8e889bedccae2e16: Merge tag 'ath-next-20240305' of git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath (2024-03-05 20:57:28 +0200) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git tags/ath-next-20240402 for you to fetch changes up to f09e3b774fe806ee0b1f2bb69771e8c29961e40a: wifi: ath9k: eeprom: fix sparse endian warnings (2024-03-25 12:51:37 +0200) ---------------------------------------------------------------- ath.git patches for v6.10 ath drivers now have no remaining sparse warnings, otherwise smaller fixes and some refactoring. ath11k * P2P support for QCA6390, WCN6855 and QCA2066 ---------------------------------------------------------------- Aloka Dixit (1): wifi: ath12k: use correct flag field for 320 MHz channels Baochen Qiang (3): wifi: ath10k: poll service ready message before failing wifi: ath11k: don't force enable power save on non-running vdevs wifi: ath11k: do not process consecutive RDDM event Jeff Johnson (3): wifi: ath12k: remove obsolete struct wmi_start_scan_arg wifi: ath11k: remove obsolete struct wmi_start_scan_arg wifi: ath11k: fix soc_dp_stats debugfs file permission Kalle Valo (7): wifi: ath6kl: fix sparse warnings wifi: wcn36xx: buff_to_be(): fix sparse warnings wifi: wcn36xx: main: fix sparse warnings wifi: wil6210: fix sparse warnings wifi: ath9k: ath9k_set_moredata(): fix sparse warnings wifi: ath9k: fix ath9k_use_msi declaration wifi: ath9k: eeprom: fix sparse endian warnings Kang Yang (8): wifi: ath11k: change interface combination for P2P mode wifi: ath11k: add P2P IE in beacon template wifi: ath11k: implement handling of P2P NoA event wifi: ath11k: change WLAN_SCAN_PARAMS_MAX_IE_LEN from 256 to 512 wifi: ath11k: change scan flag scan_f_filter_prb_req for QCA6390/WCN6855/QCA2066 wifi: ath11k: advertise P2P dev support for QCA6390/WCN6855/QCA2066 wifi: ath12k: remove duplicate definitions in wmi.h wifi: ath11k: remove duplicate definitions in wmi.h Karthikeyan Periyasamy (3): wifi: ath12k: Refactor Rxdma buffer replinish argument wifi: ath12k: Optimize the lock contention of used list in Rx data path wifi: ath12k: Refactor error handler of Rxdma replenish Kevin Lo (1): wifi: ath11k: adjust a comment to reflect reality Li Zhijian (1): wifi: ath: Convert sprintf/snprintf to sysfs_emit Thiraviyam Mariyappan (1): wifi: ath12k: fix desc address calculation in wbm tx completion drivers/net/wireless/ath/ath10k/thermal.c | 2 +- drivers/net/wireless/ath/ath10k/wmi.c | 26 +++- drivers/net/wireless/ath/ath11k/Makefile | 3 +- drivers/net/wireless/ath/ath11k/core.c | 20 ++- drivers/net/wireless/ath/ath11k/debugfs.c | 4 +- drivers/net/wireless/ath/ath11k/mac.c | 175 +++++++++++++++++++++------ drivers/net/wireless/ath/ath11k/mhi.c | 17 ++- drivers/net/wireless/ath/ath11k/p2p.c | 149 +++++++++++++++++++++++ drivers/net/wireless/ath/ath11k/p2p.h | 22 ++++ drivers/net/wireless/ath/ath11k/pci.h | 1 + drivers/net/wireless/ath/ath11k/thermal.c | 2 +- drivers/net/wireless/ath/ath11k/wmi.c | 107 +++++++++++++++- drivers/net/wireless/ath/ath11k/wmi.h | 78 ++++++------ drivers/net/wireless/ath/ath12k/dp.c | 31 +++-- drivers/net/wireless/ath/ath12k/dp.h | 7 +- drivers/net/wireless/ath/ath12k/dp_rx.c | 140 +++++++++++++-------- drivers/net/wireless/ath/ath12k/dp_rx.h | 1 + drivers/net/wireless/ath/ath12k/dp_tx.c | 2 +- drivers/net/wireless/ath/ath12k/wmi.c | 2 +- drivers/net/wireless/ath/ath12k/wmi.h | 34 ------ drivers/net/wireless/ath/ath6kl/htc_mbox.c | 3 +- drivers/net/wireless/ath/ath6kl/htc_pipe.c | 3 +- drivers/net/wireless/ath/ath9k/ath9k.h | 1 + drivers/net/wireless/ath/ath9k/eeprom_4k.c | 2 +- drivers/net/wireless/ath/ath9k/eeprom_9287.c | 4 +- drivers/net/wireless/ath/ath9k/eeprom_def.c | 6 +- drivers/net/wireless/ath/ath9k/pci.c | 2 - drivers/net/wireless/ath/ath9k/xmit.c | 10 +- drivers/net/wireless/ath/wcn36xx/main.c | 4 +- drivers/net/wireless/ath/wcn36xx/txrx.c | 4 +- drivers/net/wireless/ath/wcn36xx/wcn36xx.h | 7 +- drivers/net/wireless/ath/wil6210/cfg80211.c | 4 +- drivers/net/wireless/ath/wil6210/fw.h | 1 - drivers/net/wireless/ath/wil6210/fw_inc.c | 4 +- 34 files changed, 660 insertions(+), 218 deletions(-) create mode 100644 drivers/net/wireless/ath/ath11k/p2p.c create mode 100644 drivers/net/wireless/ath/ath11k/p2p.h