linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Erik Stromdahl <erik.stromdahl@gmail.com>
To: kvalo@qca.qualcomm.com, linux-wireless@vger.kernel.org,
	ath10k@lists.infradead.org
Cc: Erik Stromdahl <erik.stromdahl@gmail.com>
Subject: [RFC v5 00/12] ath10k high latency
Date: Sun,  3 Jun 2018 20:20:17 +0200	[thread overview]
Message-ID: <20180603182029.8914-1-erik.stromdahl@gmail.com> (raw)

Changes since v4:

I have tried to reduce the number of patches to a
minimum for getting high latency up and running.

The hw_params items for the two QCA9377 based devices
included in the previous patchset (one Linksys USB and
one SDIO device) have been skipped, and thus there is
no board-2.bin support.

I have planned to submit them in separate patches later
(together with board-2.bin support).

USB might be even more broken due to a lot of ugly
special cases beeing removed.

The main issue with USB right now is that there are no
TX_COMPL_IND's from fw.

The special cases for handling this have been removed.
If needed, they could be added back in a future patch.

The rename of the *is_high_latency* boolean to ATH10K_HTT_MODE
ended up in a rename to ATH10K_DEV_TYPE instead,
 since this is not only related to HTT.

The start_once patch was removed as well.
SDIO seems to work well without it.
If needed by USB, we can add it in a future patch.

Erik Stromdahl (12):
  ath10k: add struct ath10k_bus_params
  ath10k: add device type enum to ath10k_bus_params
  ath10k: add bus type check in ath10k_init_hw_params
  ath10k: use hw_params.num_peers for num_tids in TLV init
  ath10k: add per target config of max_num_peers
  ath10k: DMA related fixes for high latency devices
  ath10k: add HTT TX HL ops
  ath10k: add HTT RX HL ops
  ath10k: htt: RX ring config HL support
  ath10k: htt: High latency TX support
  ath10k: htt: High latency RX support
  ath10k: wmi: disable softirq's while calling ieee80211_rx

 drivers/net/wireless/ath/ath10k/ahb.c     |   9 +-
 drivers/net/wireless/ath/ath10k/core.c    |  39 ++++--
 drivers/net/wireless/ath/ath10k/core.h    |  22 +--
 drivers/net/wireless/ath/ath10k/htc.c     |  19 ++-
 drivers/net/wireless/ath/ath10k/htt.h     |  47 +++++++
 drivers/net/wireless/ath/ath10k/htt_rx.c  | 135 ++++++++++++++++++-
 drivers/net/wireless/ath/ath10k/htt_tx.c  | 155 +++++++++++++++++++++-
 drivers/net/wireless/ath/ath10k/hw.h      |   9 ++
 drivers/net/wireless/ath/ath10k/pci.c     |  13 +-
 drivers/net/wireless/ath/ath10k/rx_desc.h |  15 +++
 drivers/net/wireless/ath/ath10k/sdio.c    |   8 +-
 drivers/net/wireless/ath/ath10k/snoc.c    |   5 +-
 drivers/net/wireless/ath/ath10k/txrx.c    |   3 +-
 drivers/net/wireless/ath/ath10k/usb.c     |   7 +-
 drivers/net/wireless/ath/ath10k/wmi-tlv.c |   5 +-
 drivers/net/wireless/ath/ath10k/wmi.c     |   3 +-
 16 files changed, 444 insertions(+), 50 deletions(-)

-- 
2.17.0

             reply	other threads:[~2018-06-03 18:22 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-03 18:20 Erik Stromdahl [this message]
2018-06-03 18:20 ` [RFC v5 01/12] ath10k: add struct ath10k_bus_params Erik Stromdahl
2018-09-06 16:16   ` Kalle Valo
     [not found]   ` <20180906161624.B4751606FA@smtp.codeaurora.org>
2018-09-06 18:22     ` Erik Stromdahl
2018-10-06 11:34       ` Kalle Valo
2018-06-03 18:20 ` [RFC v5 02/12] ath10k: add device type enum to ath10k_bus_params Erik Stromdahl
2018-06-03 18:20 ` [RFC v5 03/12] ath10k: add bus type check in ath10k_init_hw_params Erik Stromdahl
2018-06-03 18:20 ` [RFC v5 04/12] ath10k: use hw_params.num_peers for num_tids in TLV init Erik Stromdahl
2018-06-03 18:20 ` [RFC v5 05/12] ath10k: add per target config of max_num_peers Erik Stromdahl
2018-06-03 18:20 ` [RFC v5 06/12] ath10k: DMA related fixes for high latency devices Erik Stromdahl
2018-06-03 18:20 ` [RFC v5 07/12] ath10k: add HTT TX HL ops Erik Stromdahl
2018-06-03 18:20 ` [RFC v5 08/12] ath10k: add HTT RX " Erik Stromdahl
2018-06-03 18:20 ` [RFC v5 09/12] ath10k: htt: RX ring config HL support Erik Stromdahl
2018-06-03 18:20 ` [RFC v5 10/12] ath10k: htt: High latency TX support Erik Stromdahl
2018-06-03 18:20 ` [RFC v5 11/12] ath10k: htt: High latency RX support Erik Stromdahl
2018-06-03 18:20 ` [RFC v5 12/12] ath10k: wmi: disable softirq's while calling ieee80211_rx Erik Stromdahl

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180603182029.8914-1-erik.stromdahl@gmail.com \
    --to=erik.stromdahl@gmail.com \
    --cc=ath10k@lists.infradead.org \
    --cc=kvalo@qca.qualcomm.com \
    --cc=linux-wireless@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).