linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/12] wifi: ath12k: QCN9274 dualmac bring up
@ 2024-01-05 19:56 Raj Kumar Bhagat
  2024-01-05 19:56 ` [PATCH v2 01/12] wifi: ath12k: indicate NON MBSSID vdev by default during vdev start Raj Kumar Bhagat
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: Raj Kumar Bhagat @ 2024-01-05 19:56 UTC (permalink / raw)
  To: ath12k; +Cc: linux-wireless, Raj Kumar Bhagat

QCN9274 Ath12k chipset can support single-mac or dualmac architecture.
Currently, Ath12k driver supports only the single-mac QCN9274
architecture.

Hence, add support for dualmac QCN9274 chipset.

Depends-On: wifi: ath12k: add firmware-2.bin support

Aaradhana Sahu (1):
  wifi: ath12k: fix firmware assert during insmod in memory segment mode

Ganesh Babu Jothiram (1):
  wifi: ath12k: Read board id to support split-PHY QCN9274

Harshitha Prem (1):
  wifi: ath12k: add support for peer meta data version

Karthikeyan Kathirvel (1):
  wifi: ath12k: subscribe required word mask from rx tlv

Karthikeyan Periyasamy (1):
  wifi: ath12k: add MAC id support in WBM error path

P Praneesh (2):
  wifi: ath12k: Add logic to write QRTR node id to scratch
  wifi: ath12k: fix PCI read and write

Raj Kumar Bhagat (3):
  wifi: ath12k: fix fetching MCBC flag for QCN9274
  wifi: ath12k: split hal_ops to support RX TLVs word mask compaction
  wifi: ath12k: remove hal_desc_sz from hw params

Sowmiya Sree Elavalagan (1):
  wifi: ath12k: fetch correct pdev id from WMI_SERVICE_READY_EXT_EVENTID

Sriram R (1):
  wifi: ath12k: indicate NON MBSSID vdev by default during vdev start

---
v2:
- dropped patch [1/13] - wifi: ath12k: Update enum wmi_direct_buffer_module
  not required with FW version being used.
- defined enum wmi_vdev_mbssid_flags at proper place.
- implemented hal_ops to retrieve the corresponding compact ops.
---

 drivers/net/wireless/ath/ath12k/core.c    |  29 ++
 drivers/net/wireless/ath/ath12k/core.h    |   7 +
 drivers/net/wireless/ath/ath12k/dp.c      |  25 +-
 drivers/net/wireless/ath/ath12k/dp.h      |  17 +-
 drivers/net/wireless/ath/ath12k/dp_mon.c  |   7 +-
 drivers/net/wireless/ath/ath12k/dp_rx.c   | 161 +++++----
 drivers/net/wireless/ath/ath12k/dp_tx.c   |  22 +-
 drivers/net/wireless/ath/ath12k/fw.c      |   7 +
 drivers/net/wireless/ath/ath12k/fw.h      |   6 +
 drivers/net/wireless/ath/ath12k/hal.c     | 415 +++++++++++++++++++++-
 drivers/net/wireless/ath/ath12k/hal.h     |  20 +-
 drivers/net/wireless/ath/ath12k/hw.c      |  10 +-
 drivers/net/wireless/ath/ath12k/hw.h      |  30 +-
 drivers/net/wireless/ath/ath12k/mac.c     |  14 +-
 drivers/net/wireless/ath/ath12k/mhi.c     |  49 ++-
 drivers/net/wireless/ath/ath12k/pci.c     |  84 +++--
 drivers/net/wireless/ath/ath12k/pci.h     |   6 +-
 drivers/net/wireless/ath/ath12k/qmi.h     |   3 +-
 drivers/net/wireless/ath/ath12k/rx_desc.h | 116 +++++-
 drivers/net/wireless/ath/ath12k/wmi.c     |  33 +-
 drivers/net/wireless/ath/ath12k/wmi.h     |  58 ++-
 21 files changed, 943 insertions(+), 176 deletions(-)

-- 
2.34.1


^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2024-01-17 12:25 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-05 19:56 [PATCH v2 00/12] wifi: ath12k: QCN9274 dualmac bring up Raj Kumar Bhagat
2024-01-05 19:56 ` [PATCH v2 01/12] wifi: ath12k: indicate NON MBSSID vdev by default during vdev start Raj Kumar Bhagat
2024-01-05 19:56 ` [PATCH v2 02/12] wifi: ath12k: fetch correct pdev id from WMI_SERVICE_READY_EXT_EVENTID Raj Kumar Bhagat
2024-01-05 19:56 ` [PATCH v2 03/12] wifi: ath12k: add support for peer meta data version Raj Kumar Bhagat
2024-01-05 19:56 ` [PATCH v2 04/12] wifi: ath12k: fix fetching MCBC flag for QCN9274 Raj Kumar Bhagat
2024-01-05 19:56 ` [PATCH v2 05/12] wifi: ath12k: Add logic to write QRTR node id to scratch Raj Kumar Bhagat
2024-01-05 19:56 ` [PATCH v2 06/12] wifi: ath12k: fix firmware assert during insmod in memory segment mode Raj Kumar Bhagat
2024-01-05 19:56 ` [PATCH v2 07/12] wifi: ath12k: split hal_ops to support RX TLVs word mask compaction Raj Kumar Bhagat
2024-01-05 19:56 ` [PATCH v2 08/12] wifi: ath12k: remove hal_desc_sz from hw params Raj Kumar Bhagat
2024-01-05 19:56 ` [PATCH v2 09/12] wifi: ath12k: subscribe required word mask from rx tlv Raj Kumar Bhagat
2024-01-05 19:56 ` [PATCH v2 10/12] wifi: ath12k: add MAC id support in WBM error path Raj Kumar Bhagat
2024-01-05 19:56 ` [PATCH v2 11/12] wifi: ath12k: fix PCI read and write Raj Kumar Bhagat
2024-01-05 19:56 ` [PATCH v2 12/12] wifi: ath12k: Read board id to support split-PHY QCN9274 Raj Kumar Bhagat
2024-01-08 17:52 ` [PATCH v2 00/12] wifi: ath12k: QCN9274 dualmac bring up Jeff Johnson
2024-01-17 12:25 ` Kalle Valo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).