All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/13] ath10k: dual-firmware support (MAIN and 10.X)
@ 2013-09-25  9:37 ` Bartosz Markowski
  0 siblings, 0 replies; 48+ messages in thread
From: Bartosz Markowski @ 2013-09-25  9:37 UTC (permalink / raw)
  To: ath10k; +Cc: linux-wireless, Bartosz Markowski

This patch-set adds framework for dynamic support of 10.X FW branch.

The major changes covered by this work:
* dynamic WMI structures
* WMI cmd/event definitions from 10.x FW track
* memory host chunks feature
* management frames path over WMI for 10.x
* WMI RX events handling for MAIN and 10.X split
* target config split (LARGE AP feature for 10.x)
* scan start sctructure split
* dynamic VDEV and PDEV parameters structures

TODO:
* add FW IEs to identify (runtime) which FW ath10k deals with

Bartosz Markowski (13):
  ath10k: introduce dynamic WMI structures
  ath10k: add wmi_10x_<cmd/event> definitions
  ath10k: warn if give WMI command is not supported
  ath10k: implement WMI events handling frame for both firmwares
  ath10k: split ath10k_wmi_service_ready_event_rx
  ath10k: drop the fw versioning sanity check
  ath10k: implement host memory chunks
  ath10k: bring back the WMI path for mgmt frames
  ath10k: split wmi_cmd_init path
  ath10k: add TARGET values for 10.x firmware
  ath10k: introduce dynamic vdev parameters
  ath10k: introduce dynamic pdev parameters
  ath10k: handle FW API differences for scan structures

 drivers/net/wireless/ath/ath10k/core.c   |   29 +-
 drivers/net/wireless/ath/ath10k/core.h   |   23 +-
 drivers/net/wireless/ath/ath10k/htt_tx.c |    4 +-
 drivers/net/wireless/ath/ath10k/hw.h     |   37 +-
 drivers/net/wireless/ath/ath10k/mac.c    |   93 ++-
 drivers/net/wireless/ath/ath10k/wmi.c    | 1129 ++++++++++++++++++++++++++++--
 drivers/net/wireless/ath/ath10k/wmi.h    |  969 ++++++++++++++++++++++++-
 7 files changed, 2160 insertions(+), 124 deletions(-)

-- 
1.7.10


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

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

end of thread, other threads:[~2013-09-26  9:07 UTC | newest]

Thread overview: 48+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-25  9:37 [PATCH 00/13] ath10k: dual-firmware support (MAIN and 10.X) Bartosz Markowski
2013-09-25  9:37 ` Bartosz Markowski
2013-09-25  9:37 ` [PATCH 01/13] ath10k: introduce dynamic WMI structures Bartosz Markowski
2013-09-25  9:37   ` Bartosz Markowski
2013-09-25 10:38   ` Michal Kazior
2013-09-25 10:38     ` Michal Kazior
2013-09-26  8:12   ` Kalle Valo
2013-09-26  8:12     ` Kalle Valo
2013-09-26  8:54   ` Kalle Valo
2013-09-26  8:54     ` Kalle Valo
2013-09-26  9:03     ` Michal Kazior
2013-09-26  9:03       ` Michal Kazior
2013-09-26  9:07       ` Kalle Valo
2013-09-26  9:07         ` Kalle Valo
2013-09-25  9:38 ` [PATCH 02/13] ath10k: add wmi_10x_<cmd/event> definitions Bartosz Markowski
2013-09-25  9:38   ` Bartosz Markowski
2013-09-25  9:38 ` [PATCH 03/13] ath10k: warn if give WMI command is not supported Bartosz Markowski
2013-09-25  9:38   ` Bartosz Markowski
2013-09-25  9:38 ` [PATCH 04/13] ath10k: implement WMI events handling frame for both firmwares Bartosz Markowski
2013-09-25  9:38   ` Bartosz Markowski
2013-09-25  9:38 ` [PATCH 05/13] ath10k: split ath10k_wmi_service_ready_event_rx Bartosz Markowski
2013-09-25  9:38   ` Bartosz Markowski
2013-09-25  9:38 ` [PATCH 06/13] ath10k: drop the fw versioning sanity check Bartosz Markowski
2013-09-25  9:38   ` Bartosz Markowski
2013-09-25  9:38 ` [PATCH 07/13] ath10k: implement host memory chunks Bartosz Markowski
2013-09-25  9:38   ` Bartosz Markowski
2013-09-26  9:04   ` Kalle Valo
2013-09-26  9:04     ` Kalle Valo
2013-09-25  9:38 ` [PATCH 08/13] ath10k: bring back the WMI path for mgmt frames Bartosz Markowski
2013-09-25  9:38   ` Bartosz Markowski
2013-09-25 10:46   ` Michal Kazior
2013-09-25 10:46     ` Michal Kazior
2013-09-25  9:38 ` [PATCH 09/13] ath10k: split wmi_cmd_init path Bartosz Markowski
2013-09-25  9:38   ` Bartosz Markowski
2013-09-26  8:15   ` Kalle Valo
2013-09-26  8:15     ` Kalle Valo
2013-09-25  9:38 ` [PATCH 10/13] ath10k: add TARGET values for 10.x firmware Bartosz Markowski
2013-09-25  9:38   ` Bartosz Markowski
2013-09-25  9:38 ` [PATCH 11/13] ath10k: introduce dynamic vdev parameters Bartosz Markowski
2013-09-25  9:38   ` Bartosz Markowski
2013-09-25 10:38   ` Michal Kazior
2013-09-25 10:38     ` Michal Kazior
2013-09-25  9:38 ` [PATCH 12/13] ath10k: introduce dynamic pdev parameters Bartosz Markowski
2013-09-25  9:38   ` Bartosz Markowski
2013-09-25 10:39   ` Michal Kazior
2013-09-25 10:39     ` Michal Kazior
2013-09-25  9:38 ` [PATCH 13/13] ath10k: handle FW API differences for scan structures Bartosz Markowski
2013-09-25  9:38   ` Bartosz Markowski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.