Linux wireless drivers development
 help / color / mirror / Atom feed
* [PATCH 00/19] iwlwifi: updates intended for v5.4 2019-08-31
@ 2019-08-31  9:48 Luca Coelho
  2019-08-31  9:48 ` [PATCH 01/19] iwlwifi: stop passing bogus gfp flags arguments to dma_alloc_coherent Luca Coelho
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: Luca Coelho @ 2019-08-31  9:48 UTC (permalink / raw)
  To: kvalo; +Cc: linux-wireless

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

Hi,

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

The changes are:

* New FW channel-switch support;
* Debug infrastructure work continues;
* Support new ACPI value for per-platform antenna gain;
* Some work on new FW scan APIs;
* A few clean-ups;
* Other small fixes and improvements;

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

Please review.

Cheers,
Luca.


Christoph Hellwig (1):
  iwlwifi: stop passing bogus gfp flags arguments to dma_alloc_coherent

Emmanuel Grumbach (1):
  iwlwifi: mvm: simplify the channel switch flow for newer firmware

Gil Adam (1):
  iwlwifi: support per-platform antenna gain

Johannes Berg (1):
  iwlwifi: api: fix FTM struct documentation

Luca Coelho (4):
  iwlwifi: mvm: remove check for lq_sta in __iwl_mvm_rs_tx_status()
  iwlwifi: bump FW API to 50 for 22000 series
  iwlwifi: remove duplicate FW string definitions
  iwlwifi: remove unnecessary IWL_DEVICE_AX200_COMMON definition

Shahar S Matityahu (9):
  iwlwifi: dbg_ini: use function to check if ini dbg mode is on
  iwlwifi: dbg_ini: verify debug TLVs at allocation phase
  iwlwifi: dbg_ini: remove debug flow TLV
  iwlwifi: dbg: align wrt log prints to the same format
  iwlwifi: dbg_ini: separate cfg and dump flows to different modules
  iwlwifi: dbg_ini: use linked list for dump TLVs during dump creation
  iwlwifi: dbg_ini: move tx fifo data into fw runtime
  iwlwifi: dbg_ini: make a single ops struct for paging collect
  iwlwifi: dbg_ini: use regions ops array instead of switch case in dump
    flow

Tova Mussai (2):
  iwlwifi: allocate bigger nvm data in case of UHB
  iwlwifi: mvm: look for the first supported channel when add/remove phy
    ctxt

 .../net/wireless/intel/iwlwifi/cfg/22000.c    |   13 +-
 drivers/net/wireless/intel/iwlwifi/fw/acpi.h  |   12 +
 .../wireless/intel/iwlwifi/fw/api/dbg-tlv.h   |   11 -
 .../wireless/intel/iwlwifi/fw/api/location.h  |    4 +-
 .../net/wireless/intel/iwlwifi/fw/api/phy.h   |    7 +
 .../net/wireless/intel/iwlwifi/fw/api/power.h |   12 +
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c   | 1003 +++++------------
 drivers/net/wireless/intel/iwlwifi/fw/dbg.h   |   12 +-
 .../wireless/intel/iwlwifi/fw/error-dump.h    |   22 +
 drivers/net/wireless/intel/iwlwifi/fw/file.h  |    4 +-
 .../net/wireless/intel/iwlwifi/fw/runtime.h   |   18 +-
 .../net/wireless/intel/iwlwifi/iwl-dbg-tlv.c  |  580 +++++++++-
 .../net/wireless/intel/iwlwifi/iwl-dbg-tlv.h  |    8 +-
 drivers/net/wireless/intel/iwlwifi/iwl-drv.c  |    3 +-
 .../wireless/intel/iwlwifi/iwl-nvm-parse.c    |    6 +-
 .../net/wireless/intel/iwlwifi/iwl-trans.h    |   27 +-
 drivers/net/wireless/intel/iwlwifi/mvm/d3.c   |    3 +
 drivers/net/wireless/intel/iwlwifi/mvm/fw.c   |  142 ++-
 .../net/wireless/intel/iwlwifi/mvm/mac-ctxt.c |    6 +-
 .../net/wireless/intel/iwlwifi/mvm/mac80211.c |   83 +-
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h  |    3 +
 .../net/wireless/intel/iwlwifi/mvm/phy-ctxt.c |   11 +-
 drivers/net/wireless/intel/iwlwifi/mvm/rs.c   |    6 +-
 drivers/net/wireless/intel/iwlwifi/mvm/scan.c |    2 +-
 .../intel/iwlwifi/pcie/ctxt-info-gen3.c       |    2 +-
 .../wireless/intel/iwlwifi/pcie/internal.h    |    2 +-
 .../net/wireless/intel/iwlwifi/pcie/trans.c   |    7 +-
 27 files changed, 1121 insertions(+), 888 deletions(-)

-- 
2.23.0.rc1


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

end of thread, other threads:[~2019-08-31  9:53 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-31  9:48 [PATCH 00/19] iwlwifi: updates intended for v5.4 2019-08-31 Luca Coelho
2019-08-31  9:48 ` [PATCH 01/19] iwlwifi: stop passing bogus gfp flags arguments to dma_alloc_coherent Luca Coelho
2019-08-31  9:48 ` [PATCH 02/19] iwlwifi: mvm: simplify the channel switch flow for newer firmware Luca Coelho
2019-08-31  9:48 ` [PATCH 03/19] iwlwifi: mvm: remove check for lq_sta in __iwl_mvm_rs_tx_status() Luca Coelho
2019-08-31  9:48 ` [PATCH 04/19] iwlwifi: support per-platform antenna gain Luca Coelho
2019-08-31  9:48 ` [PATCH 05/19] iwlwifi: api: fix FTM struct documentation Luca Coelho
2019-08-31  9:48 ` [PATCH 06/19] iwlwifi: bump FW API to 50 for 22000 series Luca Coelho
2019-08-31  9:48 ` [PATCH 07/19] iwlwifi: remove duplicate FW string definitions Luca Coelho
2019-08-31  9:48 ` [PATCH 08/19] iwlwifi: dbg_ini: use function to check if ini dbg mode is on Luca Coelho
2019-08-31  9:48 ` [PATCH 09/19] iwlwifi: dbg_ini: verify debug TLVs at allocation phase Luca Coelho
2019-08-31  9:48 ` [PATCH 10/19] iwlwifi: dbg_ini: remove debug flow TLV Luca Coelho
2019-08-31  9:48 ` [PATCH 11/19] iwlwifi: dbg: align wrt log prints to the same format Luca Coelho
2019-08-31  9:48 ` [PATCH 12/19] iwlwifi: remove unnecessary IWL_DEVICE_AX200_COMMON definition Luca Coelho
2019-08-31  9:48 ` [PATCH 13/19] iwlwifi: allocate bigger nvm data in case of UHB Luca Coelho
2019-08-31  9:48 ` [PATCH 14/19] iwlwifi: mvm: look for the first supported channel when add/remove phy ctxt Luca Coelho
2019-08-31  9:48 ` [PATCH 15/19] iwlwifi: dbg_ini: separate cfg and dump flows to different modules Luca Coelho
2019-08-31  9:48 ` [PATCH 16/19] iwlwifi: dbg_ini: use linked list for dump TLVs during dump creation Luca Coelho
2019-08-31  9:48 ` [PATCH 17/19] iwlwifi: dbg_ini: move tx fifo data into fw runtime Luca Coelho
2019-08-31  9:48 ` [PATCH 18/19] iwlwifi: dbg_ini: make a single ops struct for paging collect Luca Coelho
2019-08-31  9:48 ` [PATCH 19/19] iwlwifi: dbg_ini: use regions ops array instead of switch case in dump flow Luca Coelho

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox