public inbox for linux-wireless@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/10] wifi: ath12k: Refactor mac80211 callback operation functions
@ 2024-01-03  6:37 Karthikeyan Periyasamy
  2024-01-03  6:37 ` [PATCH 01/10] wifi: ath12k: Refactor mac callback of config Karthikeyan Periyasamy
                   ` (10 more replies)
  0 siblings, 11 replies; 24+ messages in thread
From: Karthikeyan Periyasamy @ 2024-01-03  6:37 UTC (permalink / raw)
  To: ath12k; +Cc: linux-wireless, Karthikeyan Periyasamy

Currently, the existing mac80211 callback functions are defined assuming
each link/radio is represented by a single mac80211 hw. In order to
support multi link operation (MLO), need to move from the multi wiphy
model to a single wiphy model. However, the single wiphy model allows
multiple link/radio to be exposed by the same mac80211 hw. Therefore, we
need to separate the link/radio specific handling within the mac80211
callback operations. This way, the callback can be extended to support
multiple link/radio in the future.

			Current Multi wiphy Model

+---------------+            +---------------+            +-------------+
|  Mac80211 hw  |            | Mac80211 hw   |            |Mac80211 hw  |
|  private data |            | private data  |            |private data |
|               |            |               |            |             |
|               |            |               |            |             |
|               |            |               |            |             |
|   ar (2GHz)   |            |   ar (5GHz)   |            |  ar (6GHz)  |
|               |            |               |            |             |
|               |            |               |            |             |
|               |            |               |            |             |
+---------------+            +---------------+            +-------------+




			  Single wiphy Model

                           +--------------+
                           | Mac80211 hw  |
                           | private data |
                           |              |
                           |ath12k hw (ah)|
                           | +----------+ |
                           | |ar (2GHz) | |
                           | +----------+ |
                           | |          | |
                           | |ar (5GHz) | |
                           | +----------+ |
                           | |          | |
                           | |ar (6GHz) | |
                           | |          | |
                           | +----------+ |
                           +--------------+


Karthikeyan Periyasamy (10):
  wifi: ath12k: Refactor mac callback of config
  wifi: ath12k: Refactor mac callback of bss info changed
  wifi: ath12k: Refactor mac callback of conf tx
  wifi: ath12k: Refactor mac callback of start
  wifi: ath12k: Refactor mac callback of stop
  wifi: ath12k: Refactor mac callback of update vif offload
  wifi: ath12k: Refactor mac callback of configure filter
  wifi: ath12k: Refactor mac callback of ampdu action
  wifi: ath12k: Refactor mac callback of flush
  wifi: ath12k: Refactor start vdev delay function

 drivers/net/wireless/ath/ath12k/mac.c | 250 ++++++++++++++++++--------
 1 file changed, 173 insertions(+), 77 deletions(-)


base-commit: 2cd4e3f91f264926a6b11df948417b74d52ca9b9
-- 
2.34.1


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

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

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-03  6:37 [PATCH 00/10] wifi: ath12k: Refactor mac80211 callback operation functions Karthikeyan Periyasamy
2024-01-03  6:37 ` [PATCH 01/10] wifi: ath12k: Refactor mac callback of config Karthikeyan Periyasamy
2024-01-03 17:19   ` Jeff Johnson
2024-01-16 12:22   ` Kalle Valo
2024-01-03  6:37 ` [PATCH 02/10] wifi: ath12k: Refactor mac callback of bss info changed Karthikeyan Periyasamy
2024-01-03 17:25   ` Jeff Johnson
2024-01-03  6:37 ` [PATCH 03/10] wifi: ath12k: Refactor mac callback of conf tx Karthikeyan Periyasamy
2024-01-03 17:25   ` Jeff Johnson
2024-01-03  6:37 ` [PATCH 04/10] wifi: ath12k: Refactor mac callback of start Karthikeyan Periyasamy
2024-01-03 17:31   ` Jeff Johnson
2024-01-03  6:37 ` [PATCH 05/10] wifi: ath12k: Refactor mac callback of stop Karthikeyan Periyasamy
2024-01-03 17:32   ` Jeff Johnson
2024-01-03  6:37 ` [PATCH 06/10] wifi: ath12k: Refactor mac callback of update vif offload Karthikeyan Periyasamy
2024-01-03 17:34   ` Jeff Johnson
2024-01-03  6:37 ` [PATCH 07/10] wifi: ath12k: Refactor mac callback of configure filter Karthikeyan Periyasamy
2024-01-03 17:35   ` Jeff Johnson
2024-01-03  6:37 ` [PATCH 08/10] wifi: ath12k: Refactor mac callback of ampdu action Karthikeyan Periyasamy
2024-01-03 17:36   ` Jeff Johnson
2024-01-03  6:37 ` [PATCH 09/10] wifi: ath12k: Refactor mac callback of flush Karthikeyan Periyasamy
2024-01-03 17:38   ` Jeff Johnson
2024-01-03  6:37 ` [PATCH 10/10] wifi: ath12k: Refactor start vdev delay function Karthikeyan Periyasamy
2024-01-03 17:39   ` Jeff Johnson
2024-01-15 15:35 ` [PATCH 00/10] wifi: ath12k: Refactor mac80211 callback operation functions Kalle Valo
2024-01-16  4:50   ` Karthikeyan Periyasamy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox