linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Luca Coelho <luca@coelho.fi>
To: kvalo@codeaurora.org
Cc: linux-wireless@vger.kernel.org, Luca Coelho <luciano.coelho@intel.com>
Subject: [PATCH 00/20] iwlwifi: updates intended for v5.1 2019-02-08
Date: Fri,  8 Feb 2019 12:46:52 +0200	[thread overview]
Message-ID: <20190208104712.16210-1-luca@coelho.fi> (raw)

From: Luca Coelho <luciano.coelho@intel.com>

Hi,

Here's the eighth set of patches intended for v5.1.  It's the usual
development, new features, cleanups and bugfixes.

The changes are:

* Yet more Work on the new debugging infrastructure;
* Some more FTM work;
* Work on the new device family continues;
* Bump supported FW API to 46;
* General bugfixes;
* Other cleanups;

As usual, I'm pushing this to a pending branch, for kbuild bot, and
will send a pull-request later.

Please review.

Cheers,
Luca.


Avraham Stern (3):
  iwlwifi: mvm: add support for new FTM fw API
  iwlwifi: mvm: add debug prints for FTM
  iwlwifi: mvm: stop static queues correctly

Emmanuel Grumbach (1):
  iwlwifi: mvm: fix the spatial reuse parsing for HE_TRIG PPDUs

Haim Dreyfuss (1):
  iwlwifi: mvm: add support for 32kHz external clock indication

Ilan Peer (3):
  iwiwifi: mvm: Fix FW scan concurrency support assumptions
  iwlwifi: mvm: Don't warn on command failure during restart
  iwlwifi: mvm: Do not return an error value on HW restart

Johannes Berg (2):
  iwlwifi: bump FW API to 46 for 9000 and 22000 series
  iwlwifi: mvm: fix HE radiotap data4 for HE-TB PPDUs

Luca Coelho (1):
  iwlwifi: start using B-step for some 9000 devices

Sara Sharon (1):
  iwlwifi: pcie: fix TX while flushing

Shahar S Matityahu (5):
  iwlwifi: mvm: add a debug_enable op
  iwlwifi: properly use delay option in dump trigger flow
  iwlwifi: dbg_ini: enable ignore consecutive trigger feature
  iwlwifi: dbg: buffer overflow in non_collect_ts_start array
  iwlwifi: dbg_ini: add early and after alive apply points to unified
    images

Shaul Triebitz (3):
  iwlwifi: dbg: temporarily skip periphery dump for AX210 devices
  iwlwifi: align to new periphery address space for AX210 family
  iwlwifi: add force NMI for AX210 devices

 .../net/wireless/intel/iwlwifi/cfg/22000.c    |  48 ++-
 drivers/net/wireless/intel/iwlwifi/cfg/9000.c |   2 +-
 drivers/net/wireless/intel/iwlwifi/fw/acpi.c  |  32 ++
 drivers/net/wireless/intel/iwlwifi/fw/acpi.h  |  22 +-
 .../wireless/intel/iwlwifi/fw/api/location.h  | 181 ++++++++-
 .../net/wireless/intel/iwlwifi/fw/api/power.h |  13 +-
 .../net/wireless/intel/iwlwifi/fw/api/scan.h  |   6 +-
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c   |  29 +-
 drivers/net/wireless/intel/iwlwifi/fw/dbg.h   |  57 ++-
 drivers/net/wireless/intel/iwlwifi/fw/file.h  |   5 +
 .../net/wireless/intel/iwlwifi/fw/runtime.h   |   7 +-
 .../net/wireless/intel/iwlwifi/iwl-config.h   |   8 +-
 drivers/net/wireless/intel/iwlwifi/iwl-drv.c  |   6 +-
 drivers/net/wireless/intel/iwlwifi/iwl-io.c   |  11 +-
 drivers/net/wireless/intel/iwlwifi/iwl-io.h   |  43 ++-
 drivers/net/wireless/intel/iwlwifi/iwl-prph.h |   7 +-
 .../wireless/intel/iwlwifi/mvm/constants.h    |   3 +
 .../intel/iwlwifi/mvm/ftm-initiator.c         | 362 ++++++++++++++----
 drivers/net/wireless/intel/iwlwifi/mvm/fw.c   |  15 +-
 .../net/wireless/intel/iwlwifi/mvm/mac80211.c |  14 +-
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h  |   2 +
 drivers/net/wireless/intel/iwlwifi/mvm/ops.c  |  21 +
 .../net/wireless/intel/iwlwifi/mvm/power.c    |   7 +-
 drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c |  26 +-
 drivers/net/wireless/intel/iwlwifi/mvm/scan.c |   9 +-
 .../intel/iwlwifi/pcie/ctxt-info-gen3.c       |  15 +-
 drivers/net/wireless/intel/iwlwifi/pcie/drv.c |   8 +-
 .../wireless/intel/iwlwifi/pcie/internal.h    |   2 +
 drivers/net/wireless/intel/iwlwifi/pcie/rx.c  |  10 +-
 .../net/wireless/intel/iwlwifi/pcie/trans.c   |  88 +++--
 drivers/net/wireless/intel/iwlwifi/pcie/tx.c  |  10 +
 31 files changed, 820 insertions(+), 249 deletions(-)

-- 
2.20.1


             reply	other threads:[~2019-02-08 10:47 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-08 10:46 Luca Coelho [this message]
2019-02-08 10:46 ` [PATCH 01/20] iwlwifi: bump FW API to 46 for 9000 and 22000 series Luca Coelho
2019-02-08 10:46 ` [PATCH 02/20] iwlwifi: pcie: fix TX while flushing Luca Coelho
2019-02-08 10:46 ` [PATCH 03/20] iwlwifi: mvm: add support for 32kHz external clock indication Luca Coelho
2019-02-08 10:46 ` [PATCH 04/20] iwlwifi: dbg: temporarily skip periphery dump for AX210 devices Luca Coelho
2019-02-08 10:46 ` [PATCH 05/20] iwlwifi: align to new periphery address space for AX210 family Luca Coelho
2019-02-08 10:46 ` [PATCH 06/20] iwlwifi: add force NMI for AX210 devices Luca Coelho
2019-02-08 10:46 ` [PATCH 07/20] iwlwifi: mvm: add a debug_enable op Luca Coelho
2019-02-08 10:47 ` [PATCH 08/20] iwiwifi: mvm: Fix FW scan concurrency support assumptions Luca Coelho
2019-02-08 10:47 ` [PATCH 09/20] iwlwifi: mvm: add support for new FTM fw API Luca Coelho
2019-02-08 10:47 ` [PATCH 10/20] iwlwifi: mvm: fix HE radiotap data4 for HE-TB PPDUs Luca Coelho
2019-02-08 10:47 ` [PATCH 11/20] iwlwifi: mvm: add debug prints for FTM Luca Coelho
2019-02-12  7:56   ` [PATCH 11/20 v2] " Luca Coelho
2019-02-13  6:55     ` [PATCH 11/20 v3] " Luca Coelho
2019-02-08 10:47 ` [PATCH 12/20] iwlwifi: start using B-step for some 9000 devices Luca Coelho
2019-02-08 10:47 ` [PATCH 13/20] iwlwifi: properly use delay option in dump trigger flow Luca Coelho
2019-02-08 10:47 ` [PATCH 14/20] iwlwifi: dbg_ini: enable ignore consecutive trigger feature Luca Coelho
2019-02-08 10:47 ` [PATCH 15/20] iwlwifi: mvm: fix the spatial reuse parsing for HE_TRIG PPDUs Luca Coelho
2019-02-08 10:47 ` [PATCH 16/20] iwlwifi: dbg: buffer overflow in non_collect_ts_start array Luca Coelho
2019-02-08 10:47 ` [PATCH 17/20] iwlwifi: mvm: Don't warn on command failure during restart Luca Coelho
2019-02-08 10:47 ` [PATCH 18/20] iwlwifi: mvm: Do not return an error value on HW restart Luca Coelho
2019-02-08 10:47 ` [PATCH 19/20] iwlwifi: dbg_ini: add early and after alive apply points to unified images Luca Coelho
2019-02-08 10:47 ` [PATCH 20/20] iwlwifi: mvm: stop static queues correctly Luca Coelho

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=20190208104712.16210-1-luca@coelho.fi \
    --to=luca@coelho.fi \
    --cc=kvalo@codeaurora.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=luciano.coelho@intel.com \
    /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).