From: Kalle Valo <quic_kvalo@xxxxxxxxxxx> Implementing Multi-Link Operation (MLO) continues. Bindings document is added to get WSI information from DT (patch 1) with the code parsing the information (patch 2). Rest of the patches are about configuring MLO in firmware. Device Tree bindings were last reviewed as RFC: [RFC PATCH v3 1/5] dt-bindings: net: wireless: Describe ath12k PCI module with WSI https://lore.kernel.org/ath12k/20241105180444.770951-1-quic_rajkbhag@xxxxxxxxxxx/ This patchset depends on: [PATCH 0/7] wifi: ath12k: MLO support part 6 https://patchwork.kernel.org/project/linux-wireless/cover/20241204163216.433795-1-kvalo@xxxxxxxxxx/ Please review. Bhagavathi Perumal S (1): wifi: ath12k: Add MLO WMI setup and teardown functions Karthikeyan Periyasamy (5): wifi: ath12k: send partner device details in QMI MLO capability wifi: ath12k: refactor ath12k_qmi_alloc_target_mem_chunk() wifi: ath12k: add support to allocate MLO global memory region wifi: ath12k: enable MLO setup and teardown from core wifi: ath12k: avoid redundant code in DP Rx error process Raj Kumar Bhagat (2): dt-bindings: net: wireless: Describe ath12k PCI module with WSI wifi: ath12k: parse multiple device information from Device Tree .../net/wireless/qcom,ath12k-wsi.yaml | 205 +++++++++++++ drivers/net/wireless/ath/ath12k/core.c | 256 +++++++++++++++- drivers/net/wireless/ath/ath12k/core.h | 18 ++ drivers/net/wireless/ath/ath12k/dp_rx.c | 13 +- drivers/net/wireless/ath/ath12k/mac.c | 142 +++++++++ drivers/net/wireless/ath/ath12k/mac.h | 3 + drivers/net/wireless/ath/ath12k/qmi.c | 283 ++++++++++++++---- drivers/net/wireless/ath/ath12k/qmi.h | 1 + drivers/net/wireless/ath/ath12k/wmi.c | 180 +++++++++++ drivers/net/wireless/ath/ath12k/wmi.h | 49 +++ 10 files changed, 1073 insertions(+), 77 deletions(-) create mode 100644 Documentation/devicetree/bindings/net/wireless/qcom,ath12k-wsi.yaml base-commit: 3b2ab397d31f926523f2781d7f0a14a387415bf4 prerequisite-patch-id: 4540940c2bec34a09b96e13f48137b6e790511d4 prerequisite-patch-id: 472a001cb2a5600bbb7586f33107b3e03779cd13 prerequisite-patch-id: e0f7adef6ad3fb9d6d87acb79750a50e3c806708 prerequisite-patch-id: a7b08b983b6c74382c97db7e7d10cc954853fe9a prerequisite-patch-id: f623e2512bafdececc6b567935fe750c572a0089 prerequisite-patch-id: cfe1b2c58cfa15ea019cc32114c5787a39a65f9b prerequisite-patch-id: e2829b24674547319d5e684ef7bdd800667c0807 -- 2.39.5