linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/13] ath10k: implement push-pull tx model
@ 2016-01-21 13:46 Michal Kazior
  2016-01-21 13:46 ` [PATCH 01/13] ath10k: refactor tx code Michal Kazior
                   ` (14 more replies)
  0 siblings, 15 replies; 41+ messages in thread
From: Michal Kazior @ 2016-01-21 13:46 UTC (permalink / raw)
  To: ath10k; +Cc: linux-wireless, Michal Kazior

This adds support for the new logic where host
tells firmware how many frames are queued for each
station/tid and then firmware asks host to submit
frames for given station/tid.

The patch count is a bit high but I tried
splitting the patches as much as possible to keep
them short and easy to review. Hopefully it's not
going to be a huge headache.

Note: This depends on my other patches:

 http://lists.infradead.org/pipermail/ath10k/2016-January/006675.html
 http://lists.infradead.org/pipermail/ath10k/2016-January/006729.html
 http://thread.gmane.org/gmane.linux.kernel.wireless.general/147504

I'm posting this prior to the above getting merged
to get early feedback. 

For convienence I'm providing a branch on github
which contains all dependencies and the patchset
itself:

  https://github.com/kazikcz/linux/tree/ath10k-pull-push


Michal Kazior (13):
  ath10k: refactor tx code
  ath10k: unify txpath decision
  ath10k: refactor tx pending management
  ath10k: maintain peer_id for each sta and vif
  ath10k: add fast peer_map lookup
  ath10k: add new htt message generation/parsing logic
  ath10k: implement wake_tx_queue
  ath10k: implement updating shared htt txq state
  ath10k: add txq placeholder
  ath10k: implement flushing of pending frames in txqs
  ath10k: store txq in skb_cb
  ath10k: keep track of queue depth per txq
  ath10k: implement push-pull tx

 drivers/net/wireless/ath/ath10k/core.h   |  13 +
 drivers/net/wireless/ath/ath10k/htt.h    |  21 +-
 drivers/net/wireless/ath/ath10k/htt_rx.c | 302 +++++++++++++++-
 drivers/net/wireless/ath/ath10k/htt_tx.c | 257 ++++++++++----
 drivers/net/wireless/ath/ath10k/mac.c    | 581 +++++++++++++++++++++++++++----
 drivers/net/wireless/ath/ath10k/mac.h    |   6 +
 drivers/net/wireless/ath/ath10k/txrx.c   |  11 +-
 7 files changed, 1060 insertions(+), 131 deletions(-)

-- 
2.1.4


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

end of thread, other threads:[~2016-03-07  9:48 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-21 13:46 [PATCH 00/13] ath10k: implement push-pull tx model Michal Kazior
2016-01-21 13:46 ` [PATCH 01/13] ath10k: refactor tx code Michal Kazior
2016-01-21 13:46 ` [PATCH 02/13] ath10k: unify txpath decision Michal Kazior
2016-01-21 13:46 ` [PATCH 03/13] ath10k: refactor tx pending management Michal Kazior
2016-01-21 13:46 ` [PATCH 04/13] ath10k: maintain peer_id for each sta and vif Michal Kazior
2016-01-21 13:46 ` [PATCH 05/13] ath10k: add fast peer_map lookup Michal Kazior
2016-01-21 13:46 ` [PATCH 06/13] ath10k: add new htt message generation/parsing logic Michal Kazior
2016-01-21 13:46 ` [PATCH 07/13] ath10k: implement wake_tx_queue Michal Kazior
2016-01-21 13:46 ` [PATCH 08/13] ath10k: implement updating shared htt txq state Michal Kazior
2016-01-21 13:46 ` [PATCH 09/13] ath10k: add txq placeholder Michal Kazior
2016-01-21 13:46 ` [PATCH 10/13] ath10k: implement flushing of pending frames in txqs Michal Kazior
2016-03-04  9:17   ` Valo, Kalle
2016-03-04  9:52     ` Michal Kazior
2016-03-04 15:37       ` Valo, Kalle
2016-01-21 13:46 ` [PATCH 11/13] ath10k: store txq in skb_cb Michal Kazior
2016-01-21 13:46 ` [PATCH 12/13] ath10k: keep track of queue depth per txq Michal Kazior
2016-01-21 13:46 ` [PATCH 13/13] ath10k: implement push-pull tx Michal Kazior
2016-01-21 17:40   ` Peter Oh
2016-01-22  7:47     ` Michal Kazior
2016-01-26 10:28       ` Michal Kazior
2016-01-26 19:03         ` Peter Oh
2016-01-28  8:36     ` Kalle Valo
2016-01-22  0:43 ` [PATCH 00/13] ath10k: implement push-pull tx model Ben Greear
2016-03-01 10:32 ` [PATCH v2 00/11] " Michal Kazior
2016-03-01 10:32   ` [PATCH v2 01/11] ath10k: refactor tx code Michal Kazior
2016-03-01 10:32   ` [PATCH v2 02/11] ath10k: unify txpath decision Michal Kazior
2016-03-01 10:32   ` [PATCH v2 03/11] ath10k: refactor tx pending management Michal Kazior
2016-03-01 10:32   ` [PATCH v2 04/11] ath10k: maintain peer_id for each sta and vif Michal Kazior
2016-03-01 10:32   ` [PATCH v2 05/11] ath10k: add fast peer_map lookup Michal Kazior
2016-03-01 10:32   ` [PATCH v2 06/11] ath10k: add new htt message generation/parsing logic Michal Kazior
2016-03-01 10:32   ` [PATCH v2 07/11] ath10k: implement wake_tx_queue Michal Kazior
2016-03-06 14:27     ` Valo, Kalle
2016-03-07  6:04       ` Michal Kazior
2016-03-07  9:36         ` Valo, Kalle
2016-03-01 10:32   ` [PATCH v2 08/11] ath10k: implement updating shared htt txq state Michal Kazior
2016-03-01 10:32   ` [PATCH v2 09/11] ath10k: store txq in skb_cb Michal Kazior
2016-03-01 10:32   ` [PATCH v2 10/11] ath10k: keep track of queue depth per txq Michal Kazior
2016-03-01 10:32   ` [PATCH v2 11/11] ath10k: implement push-pull tx Michal Kazior
2016-03-06 14:18   ` [PATCH v2 00/11] ath10k: implement push-pull tx model Valo, Kalle
2016-03-07  6:13     ` Michal Kazior
2016-03-07  9:48   ` Valo, Kalle

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).