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/16] iwlwifi: updates intended for v4.21 2019-01-18
Date: Fri, 18 Jan 2019 20:59:48 +0200	[thread overview]
Message-ID: <20190118190004.22270-1-luca@coelho.fi> (raw)

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

Hi,

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

The changes are:

* Preparations for improvements in the device selection code;
* Some new PCI IDs;
* Support for TWT;
* Debugging infrastructure work;
* Other cleanups and small fixes;

I'm using some new scripts I wrote that automate the removal of tags,
cherry-picking, squashing etc.  Please let me know if you see anything
weird, since I'm automating more and doing less manual checks, and the
scripts may have let something go through.

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

Please review.

Cheers,
Luca.


Colin Ian King (1):
  iwlwifi: pcie: make array 'prop' static, shrinks object size

Emmanuel Grumbach (3):
  iwlwifi: mvm: advertise support for TWT in the Extended Capability IE
  iwlwifi: mvm: rely on mac80211 to configure TWT support
  iwlwifi: mvm: fix firmware statistics usage

Ihab Zhaika (2):
  iwlwifi: correct one of the PCI struct names
  iwlwifi: add new cards for 22560, 9260 and killer series

Johannes Berg (1):
  iwlwifi: mvm: make NVM access actually fail on failures

Luca Coelho (5):
  iwlwifi: add PCI IDs for the 22260 device series
  iwlwifi: pcie: recognize NICs with hw_rev 0x364 correctly
  iwlwifi: remove support for 9000 A-step devices
  iwlwifi: pcie: remove unnecessary iwl_pcie_enable_rx_wake() function
  iwlwifi: pcie: remove suspend/resume workaround for 9000A devices

Sara Sharon (1):
  iwlwifi: mvm: support mac80211 TXQs model

Shahar S Matityahu (2):
  iwlwifi: wrt: add to dump number of lmacs, lmac1 and umac error id
  iwlwifi: wrt: add 22000 device familiy prph dump support

Shaul Triebitz (1):
  iwlwifi: mvm: fix wrong DCM TLC config

 .../net/wireless/intel/iwlwifi/cfg/22000.c    |  68 +++-
 drivers/net/wireless/intel/iwlwifi/cfg/9000.c | 110 ++----
 .../net/wireless/intel/iwlwifi/fw/api/stats.h |  15 +-
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c   | 176 +++++++--
 drivers/net/wireless/intel/iwlwifi/fw/dbg.h   |   5 +-
 .../wireless/intel/iwlwifi/fw/error-dump.h    |  11 +-
 .../net/wireless/intel/iwlwifi/fw/runtime.h   |   3 +-
 .../net/wireless/intel/iwlwifi/iwl-config.h   |  12 +-
 drivers/net/wireless/intel/iwlwifi/iwl-drv.c  |  27 +-
 .../wireless/intel/iwlwifi/iwl-nvm-parse.c    |   3 +-
 drivers/net/wireless/intel/iwlwifi/mvm/d3.c   |   8 +-
 drivers/net/wireless/intel/iwlwifi/mvm/fw.c   |   5 +-
 .../net/wireless/intel/iwlwifi/mvm/mac-ctxt.c |  94 +----
 .../net/wireless/intel/iwlwifi/mvm/mac80211.c | 135 +++++--
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h  |  54 ++-
 drivers/net/wireless/intel/iwlwifi/mvm/nvm.c  |  10 +-
 drivers/net/wireless/intel/iwlwifi/mvm/ops.c  |  87 +++--
 .../net/wireless/intel/iwlwifi/mvm/rs-fw.c    |   7 +-
 drivers/net/wireless/intel/iwlwifi/mvm/rx.c   |  10 +-
 drivers/net/wireless/intel/iwlwifi/mvm/sta.c  | 360 +++++++-----------
 drivers/net/wireless/intel/iwlwifi/mvm/sta.h  |   4 -
 drivers/net/wireless/intel/iwlwifi/mvm/tx.c   |  71 +---
 .../net/wireless/intel/iwlwifi/mvm/utils.c    |  13 +-
 drivers/net/wireless/intel/iwlwifi/pcie/drv.c |  86 ++++-
 .../wireless/intel/iwlwifi/pcie/internal.h    |   2 -
 drivers/net/wireless/intel/iwlwifi/pcie/rx.c  |  26 --
 .../net/wireless/intel/iwlwifi/pcie/trans.c   |  25 +-
 27 files changed, 727 insertions(+), 700 deletions(-)

-- 
2.20.1


             reply	other threads:[~2019-01-18 19:00 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-18 18:59 Luca Coelho [this message]
2019-01-18 18:59 ` [PATCH 01/16] iwlwifi: pcie: make array 'prop' static, shrinks object size Luca Coelho
2019-01-18 18:59 ` [PATCH 02/16] iwlwifi: wrt: add to dump number of lmacs, lmac1 and umac error id Luca Coelho
2019-01-18 18:59 ` [PATCH 03/16] iwlwifi: mvm: advertise support for TWT in the Extended Capability IE Luca Coelho
2019-01-18 18:59 ` [PATCH 04/16] iwlwifi: mvm: rely on mac80211 to configure TWT support Luca Coelho
2019-01-18 18:59 ` [PATCH 05/16] iwlwifi: add PCI IDs for the 22260 device series Luca Coelho
2019-01-18 18:59 ` [PATCH 06/16] iwlwifi: pcie: recognize NICs with hw_rev 0x364 correctly Luca Coelho
2019-01-21 20:46   ` kbuild test robot
2019-01-23  7:02     ` [PATCH v2] " Luca Coelho
2019-01-18 18:59 ` [PATCH 07/16] iwlwifi: mvm: fix wrong DCM TLC config Luca Coelho
2019-01-18 18:59 ` [PATCH 08/16] iwlwifi: correct one of the PCI struct names Luca Coelho
2019-01-18 18:59 ` [PATCH 09/16] iwlwifi: add new cards for 22560, 9260 and killer series Luca Coelho
2019-01-18 18:59 ` [PATCH 10/16] iwlwifi: mvm: fix firmware statistics usage Luca Coelho
2019-01-18 18:59 ` [PATCH 11/16] iwlwifi: remove support for 9000 A-step devices Luca Coelho
2019-01-18 19:00 ` [PATCH 12/16] iwlwifi: pcie: remove unnecessary iwl_pcie_enable_rx_wake() function Luca Coelho
2019-01-18 19:00 ` [PATCH 13/16] iwlwifi: pcie: remove suspend/resume workaround for 9000A devices Luca Coelho
2019-01-18 19:00 ` [PATCH 14/16] iwlwifi: wrt: add 22000 device familiy prph dump support Luca Coelho
2019-01-18 19:00 ` [PATCH 15/16] iwlwifi: mvm: make NVM access actually fail on failures Luca Coelho
2019-01-18 19:00 ` [PATCH 16/16] iwlwifi: mvm: support mac80211 TXQs model 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=20190118190004.22270-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).