Linux wireless drivers development
 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 v2 00/17] iwlwifi: updates intended for v4.20 2018-08-18
Date: Tue, 21 Aug 2018 08:09:35 +0300	[thread overview]
Message-ID: <20180821050952.31603-1-luca@coelho.fi> (raw)

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

Here's a second version of the first set of patches intended for
v4.20.  I fixed a linkage error when CONFIG_PM is not enabled, as
reported by kbuildbot.  For this, I added a new, separate patch
"iwlwifi: mvm: protect D0i3 code behind CONFIG_PM" that adds checks
for the CONFIG_PM flags in a few places that were missing.

The rest is the same:

It's the usual developments, with some small new feauters,
cleanups and bugfixes.

The changes are:

* One fix for channel-switch handling;
* Some improvements in the HE code;
* New FW API handling;
* Improvements in the debugging code;
* Other clean-ups and small fixes;

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

I have a lot of pending patches in our internal tree, so I'll probably
send another patchset before sending the pull-request.

Please review.

Cheers,
Luca.


Avraham Stern (1):
  iwlwifi: set the tid for non-QOS frames to zero

Golan Ben Ami (3):
  iwlwifi: add required include to iwl-fh.h
  iwlwifi: pcie: allow using tx init for other queues but the command
    queue
  iwlwifi: pcie: make non-static hcmd and rx code

Gregory Greenman (1):
  iwlwifi: mvm: add NOA and CSA to a probe response

Liad Kaufman (2):
  iwlwifi: mvm: add bss color to radiotap
  iwlwifi: mvm: add support for RX_AMPDU_EOF bit for HE SU

Luca Coelho (4):
  iwlwifi: remove unused TLC debugging commands
  iwlwifi: mvm: remove duplicate if in iwl_mvm_setup_connection_keep()
  iwlwifi: mvm: protect D0i3 code behind CONFIG_PM
  iwlwifi: mvm: support new WoWLAN status FW API

Mordechay Goodstein (2):
  iwlwifi: turn timestamp marker cmd off by default
  iwlwifi: enable reading the value of delay in timestamp_marker cmd

Naftali Goldstein (1):
  iwlwifi: runtime: avoid calling debugfs read functions more than once

Sara Sharon (2):
  iwlwifi: mvm: move he RX handling to a separate function
  iwlwifi: drop packets with bad status in CD

Shahar S Matityahu (1):
  iwlwifi: add d3 debug data support

 .../net/wireless/intel/iwlwifi/cfg/22000.c    |   4 +-
 drivers/net/wireless/intel/iwlwifi/cfg/9000.c |   4 +-
 .../net/wireless/intel/iwlwifi/fw/api/d3.h    |  89 ++-
 .../wireless/intel/iwlwifi/fw/api/mac-cfg.h   |  49 ++
 .../net/wireless/intel/iwlwifi/fw/api/rs.h    |  60 --
 .../net/wireless/intel/iwlwifi/fw/api/rx.h    |  63 ++
 .../net/wireless/intel/iwlwifi/fw/api/tx.h    |   2 +-
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c   |  51 +-
 drivers/net/wireless/intel/iwlwifi/fw/dbg.h   |  10 +
 .../net/wireless/intel/iwlwifi/fw/debugfs.c   | 121 +++-
 .../wireless/intel/iwlwifi/fw/error-dump.h    |   8 +-
 drivers/net/wireless/intel/iwlwifi/fw/file.h  |   3 +
 .../net/wireless/intel/iwlwifi/fw/runtime.h   |   1 +
 .../net/wireless/intel/iwlwifi/iwl-config.h   |   4 +
 drivers/net/wireless/intel/iwlwifi/iwl-csr.h  |   1 +
 drivers/net/wireless/intel/iwlwifi/iwl-drv.c  |   4 +-
 drivers/net/wireless/intel/iwlwifi/iwl-fh.h   |   2 +
 .../net/wireless/intel/iwlwifi/iwl-trans.h    |   1 +
 drivers/net/wireless/intel/iwlwifi/mvm/d3.c   | 160 +++--
 .../net/wireless/intel/iwlwifi/mvm/mac-ctxt.c |  61 ++
 .../net/wireless/intel/iwlwifi/mvm/mac80211.c |   9 +
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h  |  19 +
 drivers/net/wireless/intel/iwlwifi/mvm/ops.c  |  38 +-
 drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c | 569 +++++++++---------
 drivers/net/wireless/intel/iwlwifi/mvm/tx.c   |  91 ++-
 .../wireless/intel/iwlwifi/pcie/internal.h    |  71 +--
 drivers/net/wireless/intel/iwlwifi/pcie/rx.c  |  12 +-
 .../wireless/intel/iwlwifi/pcie/trans-gen2.c  |   2 +-
 .../net/wireless/intel/iwlwifi/pcie/tx-gen2.c |  33 +-
 drivers/net/wireless/intel/iwlwifi/pcie/tx.c  |   2 +-
 30 files changed, 1016 insertions(+), 528 deletions(-)

-- 
2.18.0

             reply	other threads:[~2018-08-21  8:28 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-21  5:09 Luca Coelho [this message]
2018-08-21  5:09 ` [PATCH v2 01/17] iwlwifi: turn timestamp marker cmd off by default Luca Coelho
2018-08-21  5:09 ` [PATCH v2 02/17] iwlwifi: remove unused TLC debugging commands Luca Coelho
2018-08-21  5:09 ` [PATCH v2 03/17] iwlwifi: runtime: avoid calling debugfs read functions more than once Luca Coelho
2018-08-21  5:09 ` [PATCH v2 04/17] iwlwifi: set the tid for non-QOS frames to zero Luca Coelho
2018-08-21  5:09 ` [PATCH v2 05/17] iwlwifi: add d3 debug data support Luca Coelho
2018-08-22 11:37   ` Kalle Valo
2018-08-22 11:40     ` Luca Coelho
2018-08-21  5:09 ` [PATCH v2 06/17] iwlwifi: mvm: remove duplicate if in iwl_mvm_setup_connection_keep() Luca Coelho
2018-08-21  5:09 ` [PATCH v2 07/17] iwlwifi: mvm: protect D0i3 code behind CONFIG_PM Luca Coelho
2018-08-21  5:09 ` [PATCH v2 08/17] iwlwifi: mvm: support new WoWLAN status FW API Luca Coelho
2018-08-21  5:09 ` [PATCH v2 09/17] iwlwifi: mvm: add NOA and CSA to a probe response Luca Coelho
2018-08-21  5:09 ` [PATCH v2 10/17] iwlwifi: add required include to iwl-fh.h Luca Coelho
2018-08-21  5:09 ` [PATCH v2 11/17] iwlwifi: mvm: add bss color to radiotap Luca Coelho
2018-08-21  5:09 ` [PATCH v2 12/17] iwlwifi: mvm: add support for RX_AMPDU_EOF bit for HE SU Luca Coelho
2018-08-21  5:09 ` [PATCH v2 13/17] iwlwifi: mvm: move he RX handling to a separate function Luca Coelho
2018-08-21  5:09 ` [PATCH v2 14/17] iwlwifi: enable reading the value of delay in timestamp_marker cmd Luca Coelho
2018-08-21  5:09 ` [PATCH v2 15/17] iwlwifi: drop packets with bad status in CD Luca Coelho
2018-08-21  5:09 ` [PATCH v2 16/17] iwlwifi: pcie: allow using tx init for other queues but the command queue Luca Coelho
2018-08-21  5:09 ` [PATCH v2 17/17] iwlwifi: pcie: make non-static hcmd and rx code 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=20180821050952.31603-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