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/17] iwlwifi: updates intended for v5.1 2019-02-07
Date: Fri,  8 Feb 2019 00:36:05 +0200	[thread overview]
Message-ID: <20190207223622.9642-1-luca@coelho.fi> (raw)

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

Hi,

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

The changes are:

* Work on the new debugging infrastructure continues;
* FTM (Fine Timing Measurement) initiator and responder implementation;
* Support for a new device family started;
* Bump supported FW API to 45;
* 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 (1):
  iwlwifi: mvm: Fix possible NULL pointer dereference

Ido Yariv (1):
  iwlwifi: mvm: don't require WOWLAN images when unified

Johannes Berg (3):
  iwlwifi: mvm: support FTM responder
  iwlwifi: mvm: support FTM initiator
  iwlwifi: mvm: clean up NO_PSDU case

Luca Coelho (1):
  iwlwifi: bump FW API to 45 for 9000 and 22000 series

Mordechay Goodstein (1):
  iwlwifi: add FW recovery flow

Sara Sharon (4):
  iwlwifi: pcie: fix emergency path
  iwlwifi: dvm: don't use IWL_DL_FW_ERRORS
  iwlwifi: pcie: add TPT oriented prints
  iwlwifi: mvm: support beacon IE injection

Shahar S Matityahu (4):
  iwlwifi: dbg_ini: implement monitor sram memory dump
  iwlwifi: dbg_ini: implement monitor dram memory dump
  iwlwifi: receive umac and lmac error table addresses from TLVs
  iwlwifi: dbg_ini: rewrite trigger flow and align to FW API changes

Shaul Triebitz (2):
  iwlwifi: introduce device family AX210
  iwlwifi: do not fail on large amount of channels

 .../net/wireless/intel/iwlwifi/cfg/22000.c    |  49 +-
 drivers/net/wireless/intel/iwlwifi/cfg/9000.c |   2 +-
 drivers/net/wireless/intel/iwlwifi/dvm/main.c |  14 +-
 .../net/wireless/intel/iwlwifi/fw/api/alive.h |  48 +-
 .../wireless/intel/iwlwifi/fw/api/commands.h  |   5 +
 .../wireless/intel/iwlwifi/fw/api/dbg-tlv.h   |  11 +-
 .../wireless/intel/iwlwifi/fw/api/location.h  |  10 +-
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c   | 221 +++++++--
 drivers/net/wireless/intel/iwlwifi/fw/dbg.h   |  27 +-
 .../wireless/intel/iwlwifi/fw/error-dump.h    |  16 +-
 drivers/net/wireless/intel/iwlwifi/fw/file.h  |  12 +
 drivers/net/wireless/intel/iwlwifi/fw/img.h   |  12 +-
 .../net/wireless/intel/iwlwifi/fw/runtime.h   |  12 +
 .../net/wireless/intel/iwlwifi/iwl-config.h   |   7 +
 drivers/net/wireless/intel/iwlwifi/iwl-csr.h  |   5 +
 .../net/wireless/intel/iwlwifi/iwl-debug.h    |   5 +-
 drivers/net/wireless/intel/iwlwifi/iwl-drv.c  |  49 ++
 .../wireless/intel/iwlwifi/iwl-nvm-parse.c    |   6 +-
 .../net/wireless/intel/iwlwifi/iwl-trans.h    |  10 +
 .../net/wireless/intel/iwlwifi/mvm/Makefile   |   1 +
 .../wireless/intel/iwlwifi/mvm/constants.h    |   3 +
 drivers/net/wireless/intel/iwlwifi/mvm/d3.c   |   2 +-
 .../net/wireless/intel/iwlwifi/mvm/debugfs.c  | 106 ++++
 .../intel/iwlwifi/mvm/ftm-initiator.c         | 459 ++++++++++++++++++
 .../intel/iwlwifi/mvm/ftm-responder.c         | 244 ++++++++++
 drivers/net/wireless/intel/iwlwifi/mvm/fw.c   |  77 ++-
 .../net/wireless/intel/iwlwifi/mvm/mac-ctxt.c |  22 +-
 .../net/wireless/intel/iwlwifi/mvm/mac80211.c | 154 +++++-
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h  |  41 +-
 drivers/net/wireless/intel/iwlwifi/mvm/ops.c  |  27 ++
 drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c |   7 +-
 drivers/net/wireless/intel/iwlwifi/mvm/sta.c  |   3 +-
 .../wireless/intel/iwlwifi/mvm/time-event.c   |   2 +-
 .../net/wireless/intel/iwlwifi/mvm/utils.c    |  12 +-
 .../intel/iwlwifi/pcie/ctxt-info-gen3.c       |  13 +-
 drivers/net/wireless/intel/iwlwifi/pcie/drv.c |   8 +
 drivers/net/wireless/intel/iwlwifi/pcie/rx.c  |  42 +-
 .../wireless/intel/iwlwifi/pcie/trans-gen2.c  |   7 +-
 .../net/wireless/intel/iwlwifi/pcie/trans.c   |  17 +-
 drivers/net/wireless/intel/iwlwifi/pcie/tx.c  |  12 +-
 include/linux/ieee80211.h                     |   2 +
 41 files changed, 1629 insertions(+), 153 deletions(-)
 create mode 100644 drivers/net/wireless/intel/iwlwifi/mvm/ftm-initiator.c
 create mode 100644 drivers/net/wireless/intel/iwlwifi/mvm/ftm-responder.c

-- 
2.20.1


             reply	other threads:[~2019-02-07 22:36 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-07 22:36 Luca Coelho [this message]
2019-02-07 22:36 ` [PATCH 01/17] iwlwifi: bump FW API to 45 for 9000 and 22000 series Luca Coelho
2019-02-07 22:36 ` [PATCH 02/17] iwlwifi: pcie: fix emergency path Luca Coelho
2019-02-07 22:36 ` [PATCH 03/17] iwlwifi: dvm: don't use IWL_DL_FW_ERRORS Luca Coelho
2019-02-07 22:36 ` [PATCH 04/17] iwlwifi: pcie: add TPT oriented prints Luca Coelho
2019-02-07 22:36 ` [PATCH 05/17] iwlwifi: dbg_ini: implement monitor sram memory dump Luca Coelho
2019-02-07 22:36 ` [PATCH 06/17] iwlwifi: mvm: don't require WOWLAN images when unified Luca Coelho
2019-02-07 22:36 ` [PATCH 07/17] iwlwifi: dbg_ini: implement monitor dram memory dump Luca Coelho
2019-02-07 22:36 ` [PATCH 08/17] iwlwifi: mvm: support FTM responder Luca Coelho
2019-02-07 22:36 ` [PATCH 09/17] iwlwifi: mvm: support FTM initiator Luca Coelho
2019-02-07 22:36 ` [PATCH 10/17] iwlwifi: mvm: clean up NO_PSDU case Luca Coelho
2019-02-07 22:36 ` [PATCH 11/17] iwlwifi: receive umac and lmac error table addresses from TLVs Luca Coelho
2019-02-07 22:36 ` [PATCH 12/17] iwlwifi: dbg_ini: rewrite trigger flow and align to FW API changes Luca Coelho
2019-02-07 22:36 ` [PATCH 13/17] iwlwifi: introduce device family AX210 Luca Coelho
2019-02-07 22:36 ` [PATCH 14/17] iwlwifi: add FW recovery flow Luca Coelho
2019-02-07 22:36 ` [PATCH 15/17] iwlwifi: do not fail on large amount of channels Luca Coelho
2019-02-07 22:36 ` [PATCH 16/17] iwlwifi: mvm: Fix possible NULL pointer dereference Luca Coelho
2019-02-07 22:36 ` [PATCH 17/17] iwlwifi: mvm: support beacon IE injection 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=20190207223622.9642-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).