linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/21] iwlwifi: updates intended for v5.1 2019-01-31
@ 2019-01-31 20:21 Luca Coelho
  2019-01-31 20:21 ` [PATCH 01/21] iwlwifi: mvm: limit AMSDU size to 8K Luca Coelho
                   ` (20 more replies)
  0 siblings, 21 replies; 25+ messages in thread
From: Luca Coelho @ 2019-01-31 20:21 UTC (permalink / raw)
  To: kvalo; +Cc: linux-wireless, Luca Coelho

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

Hi,

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

The changes are:

* More work on the new debugging infrastructure;
* HE radiotap;
* More fixes for static analyzer reported issues;
* General bugfixes;
* Other cleanups and small fixes;

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

Please review.

Cheers,
Luca.



Avigail Grinstein (1):
  iwlwifi: mvm: support absolute thresholds in bf configuration

Johannes Berg (8):
  iwlwifi: mvm: remove redundant condition
  iwlwifi: dvm: use %u for sscanf() into unsigned variable
  iwlwifi: mvm: add HE TB PPDU SIG-A BW to radiotap
  iwlwifi: move config structs to C file
  iwlwifi: mvm: don't hide HE radiotap data in SKB
  iwlwifi: refactor NIC init sequence
  iwlwifi: mvm: fix RFH config command with >=10 CPUs
  iwlwifi: implement BISR HW workaround for 22260 devices

Liad Kaufman (2):
  iwlwifi: mvm: add tlc command name to output
  iwlwifi: mvm: config mac ctxt to HE before TLC

Naftali Goldstein (1):
  iwlwifi: mvm: add description to second BAD_COMMAND assert number

Sara Sharon (2):
  iwlwifi: mvm: limit AMSDU size to 8K
  iwlwifi: mvm: fix RSS config command

Shahar S Matityahu (7):
  iwlwifi: dbg_ini: remove redundant dram buffer allocation
  iwlwifi: dbg_ini: align struct iwl_fw_ini_region_cfg to the FW
  iwlwifi: dbg_ini: create new dump flow and implement prph dump
  iwlwifi: dbg_ini: implement csr memory dump
  iwlwifi: dbg_ini: implement device internal memory dump
  iwlwifi: dbg_ini: implement paging memory dump
  iwlwifi: fix send hcmd timeout recovery flow

 .../net/wireless/intel/iwlwifi/cfg/22000.c    |   3 +
 .../net/wireless/intel/iwlwifi/dvm/debugfs.c  |   3 +-
 .../wireless/intel/iwlwifi/fw/api/dbg-tlv.h   |  40 +-
 .../net/wireless/intel/iwlwifi/fw/api/power.h |  11 +-
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c   | 450 ++++++++++++------
 drivers/net/wireless/intel/iwlwifi/fw/dbg.h   |   4 +
 .../wireless/intel/iwlwifi/fw/error-dump.h    |  42 +-
 drivers/net/wireless/intel/iwlwifi/fw/file.h  |   3 +
 drivers/net/wireless/intel/iwlwifi/fw/img.h   |  19 +-
 .../net/wireless/intel/iwlwifi/fw/runtime.h   |   2 +-
 .../net/wireless/intel/iwlwifi/iwl-config.h   |  35 +-
 .../net/wireless/intel/iwlwifi/iwl-dbg-tlv.c  |  23 +-
 .../wireless/intel/iwlwifi/iwl-eeprom-read.c  |  47 +-
 drivers/net/wireless/intel/iwlwifi/iwl-io.c   |  72 +++
 drivers/net/wireless/intel/iwlwifi/iwl-io.h   |   5 +
 .../net/wireless/intel/iwlwifi/iwl-trans.h    |  18 +
 drivers/net/wireless/intel/iwlwifi/mvm/fw.c   |  32 +-
 .../net/wireless/intel/iwlwifi/mvm/mac-ctxt.c |   3 +-
 .../net/wireless/intel/iwlwifi/mvm/mac80211.c |   4 +
 drivers/net/wireless/intel/iwlwifi/mvm/ops.c  |   1 +
 .../net/wireless/intel/iwlwifi/mvm/power.c    |  20 +-
 drivers/net/wireless/intel/iwlwifi/mvm/rs.c   |   7 +-
 drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c |  68 ++-
 drivers/net/wireless/intel/iwlwifi/mvm/sta.c  |   8 +-
 .../net/wireless/intel/iwlwifi/mvm/utils.c    |  19 +-
 .../wireless/intel/iwlwifi/pcie/ctxt-info.c   |   6 +-
 .../wireless/intel/iwlwifi/pcie/internal.h    |  19 +-
 .../wireless/intel/iwlwifi/pcie/trans-gen2.c  |  21 +-
 .../net/wireless/intel/iwlwifi/pcie/trans.c   | 102 ++--
 .../net/wireless/intel/iwlwifi/pcie/tx-gen2.c |   8 +-
 drivers/net/wireless/intel/iwlwifi/pcie/tx.c  |   8 +-
 include/net/ieee80211_radiotap.h              |   6 +
 32 files changed, 716 insertions(+), 393 deletions(-)

-- 
2.20.1


^ permalink raw reply	[flat|nested] 25+ messages in thread

end of thread, other threads:[~2019-02-07  9:33 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-31 20:21 [PATCH 00/21] iwlwifi: updates intended for v5.1 2019-01-31 Luca Coelho
2019-01-31 20:21 ` [PATCH 01/21] iwlwifi: mvm: limit AMSDU size to 8K Luca Coelho
2019-01-31 20:21 ` [PATCH 02/21] iwlwifi: mvm: remove redundant condition Luca Coelho
2019-01-31 20:21 ` [PATCH 03/21] iwlwifi: mvm: add tlc command name to output Luca Coelho
2019-01-31 20:21 ` [PATCH 04/21] iwlwifi: mvm: config mac ctxt to HE before TLC Luca Coelho
2019-01-31 20:21 ` [PATCH 05/21] iwlwifi: dvm: use %u for sscanf() into unsigned variable Luca Coelho
2019-01-31 20:21 ` [PATCH 06/21] iwlwifi: dbg_ini: remove redundant dram buffer allocation Luca Coelho
2019-01-31 20:21 ` [PATCH 07/21] iwlwifi: mvm: add HE TB PPDU SIG-A BW to radiotap Luca Coelho
2019-02-06 18:11   ` Kalle Valo
2019-02-06 19:05     ` Johannes Berg
2019-02-07  9:33       ` Kalle Valo
2019-01-31 20:21 ` [PATCH 08/21] iwlwifi: move config structs to C file Luca Coelho
2019-01-31 20:21 ` [PATCH 09/21] iwlwifi: mvm: add description to second BAD_COMMAND assert number Luca Coelho
2019-01-31 20:21 ` [PATCH 10/21] iwlwifi: mvm: don't hide HE radiotap data in SKB Luca Coelho
2019-01-31 20:21 ` [PATCH 11/21] iwlwifi: mvm: support absolute thresholds in bf configuration Luca Coelho
2019-01-31 20:21 ` [PATCH 12/21] iwlwifi: mvm: fix RSS config command Luca Coelho
2019-01-31 20:21 ` [PATCH 13/21] iwlwifi: dbg_ini: align struct iwl_fw_ini_region_cfg to the FW Luca Coelho
2019-01-31 20:21 ` [PATCH 14/21] iwlwifi: dbg_ini: create new dump flow and implement prph dump Luca Coelho
2019-01-31 20:22 ` [PATCH 15/21] iwlwifi: dbg_ini: implement csr memory dump Luca Coelho
2019-01-31 20:22 ` [PATCH 16/21] iwlwifi: dbg_ini: implement device internal " Luca Coelho
2019-01-31 20:22 ` [PATCH 17/21] iwlwifi: dbg_ini: implement paging " Luca Coelho
2019-01-31 20:22 ` [PATCH 18/21] iwlwifi: fix send hcmd timeout recovery flow Luca Coelho
2019-01-31 20:22 ` [PATCH 19/21] iwlwifi: refactor NIC init sequence Luca Coelho
2019-01-31 20:22 ` [PATCH 20/21] iwlwifi: mvm: fix RFH config command with >=10 CPUs Luca Coelho
2019-01-31 20:22 ` [PATCH 21/21] iwlwifi: implement BISR HW workaround for 22260 devices Luca Coelho

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).