linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/18] iwlwifi: updates intended for v5.4 2019-08-21
@ 2019-08-21 13:37 Luca Coelho
  2019-08-21 13:37 ` [PATCH 01/18] iwlwifi: mvm: ftm: make common calib signed Luca Coelho
                   ` (17 more replies)
  0 siblings, 18 replies; 23+ messages in thread
From: Luca Coelho @ 2019-08-21 13:37 UTC (permalink / raw)
  To: kvalo; +Cc: linux-wireless

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

Hi,

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

The changes are:

* Removal of (broken) d0i3 continues;
* Debug infrastructure work continues;
* Fix for the SN value in certain suspend/resume situations;
* 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.


Alex Malamud (2):
  iwlwifi: mvm: ftm: make common calib signed
  iwlwifi: Set w-pointer upon resume according to SN

Ayala Beker (2):
  iwlwifi: scan: add support for new scan request command version
  iwlwifi: scan: don't pass large argument by value

Emmanuel Grumbach (6):
  iwlwifi: remove runtime_pm_mode
  iwlwifi: remove the opmode's d0i3 handlers
  iwlwifi: pcie: remove the refs / unrefs from the transport
  iwlwifi: pcie: remove some more d0i3 code from the transport
  iwlwifi: remove the d0i3 related module parameters
  iwlwifi: remove pm_runtime completely

Haim Dreyfuss (1):
  iwlwifi: remove unused regdb_ptrs allocation

Johannes Berg (1):
  iwlwifi: mvm: use FW thermal monitoring regardless of CONFIG_THERMAL

Mordechay Goodstein (1):
  iwlwifi: mvm: name magic numbers with enum

Shahar S Matityahu (5):
  iwlwifi: dbg_ini: align dbg tlv functions names to a single format
  iwlwifi: dbg: add debug periphery registers to 9000 device family
  iwlwifi: dbg_ini: maintain buffer allocations from trans instead of
    TLVs buffer
  iwlwifi: dbg_ini: use linked list to store debug TLVs
  iwlwifi: dbg_ini: remove periphery phy and aux regions handling

 .../wireless/intel/iwlwifi/fw/api/dbg-tlv.h   |   2 +
 .../net/wireless/intel/iwlwifi/fw/api/rs.h    |  18 ++-
 .../net/wireless/intel/iwlwifi/fw/api/scan.h  |  55 ++++++-
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c   |  53 +++---
 drivers/net/wireless/intel/iwlwifi/fw/file.h  |   4 +-
 drivers/net/wireless/intel/iwlwifi/fw/img.h   |   9 --
 .../net/wireless/intel/iwlwifi/iwl-dbg-tlv.c  | 153 +++++-------------
 .../net/wireless/intel/iwlwifi/iwl-dbg-tlv.h  |  24 ++-
 drivers/net/wireless/intel/iwlwifi/iwl-drv.c  |  19 +--
 .../wireless/intel/iwlwifi/iwl-modparams.h    |   9 +-
 .../wireless/intel/iwlwifi/iwl-nvm-parse.c    |  14 --
 .../net/wireless/intel/iwlwifi/iwl-op-mode.h  |  23 ---
 .../net/wireless/intel/iwlwifi/iwl-trans.c    |  14 --
 .../net/wireless/intel/iwlwifi/iwl-trans.h    | 106 ++++--------
 drivers/net/wireless/intel/iwlwifi/mvm/d3.c   |   9 ++
 .../net/wireless/intel/iwlwifi/mvm/debugfs.c  |  37 +++++
 drivers/net/wireless/intel/iwlwifi/mvm/fw.c   |  17 +-
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h  |  11 +-
 .../net/wireless/intel/iwlwifi/mvm/rs-fw.c    |  19 ++-
 drivers/net/wireless/intel/iwlwifi/mvm/scan.c |  87 +++++++---
 drivers/net/wireless/intel/iwlwifi/pcie/drv.c |  99 ------------
 .../wireless/intel/iwlwifi/pcie/internal.h    |  11 +-
 .../wireless/intel/iwlwifi/pcie/trans-gen2.c  |   6 +-
 .../net/wireless/intel/iwlwifi/pcie/trans.c   |  67 ++------
 .../net/wireless/intel/iwlwifi/pcie/tx-gen2.c |  42 +----
 drivers/net/wireless/intel/iwlwifi/pcie/tx.c  |  92 ++++-------
 26 files changed, 363 insertions(+), 637 deletions(-)

-- 
2.23.0.rc1


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

end of thread, other threads:[~2019-09-05 12:58 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-21 13:37 [PATCH 00/18] iwlwifi: updates intended for v5.4 2019-08-21 Luca Coelho
2019-08-21 13:37 ` [PATCH 01/18] iwlwifi: mvm: ftm: make common calib signed Luca Coelho
2019-09-03 11:23   ` Kalle Valo
2019-08-21 13:37 ` [PATCH 02/18] iwlwifi: scan: add support for new scan request command version Luca Coelho
2019-08-21 13:37 ` [PATCH 03/18] iwlwifi: mvm: name magic numbers with enum Luca Coelho
2019-08-21 13:37 ` [PATCH 04/18] iwlwifi: mvm: use FW thermal monitoring regardless of CONFIG_THERMAL Luca Coelho
2019-08-21 13:37 ` [PATCH 05/18] iwlwifi: Set w-pointer upon resume according to SN Luca Coelho
2019-09-03 11:26   ` Kalle Valo
2019-09-05 12:56     ` Luca Coelho
2019-09-05 12:58       ` Kalle Valo
2019-08-21 13:37 ` [PATCH 06/18] iwlwifi: remove runtime_pm_mode Luca Coelho
2019-08-21 13:37 ` [PATCH 07/18] iwlwifi: remove the opmode's d0i3 handlers Luca Coelho
2019-08-21 13:37 ` [PATCH 08/18] iwlwifi: pcie: remove the refs / unrefs from the transport Luca Coelho
2019-08-21 13:37 ` [PATCH 09/18] iwlwifi: pcie: remove some more d0i3 code " Luca Coelho
2019-08-21 13:37 ` [PATCH 10/18] iwlwifi: remove the d0i3 related module parameters Luca Coelho
2019-08-21 13:37 ` [PATCH 11/18] iwlwifi: remove pm_runtime completely Luca Coelho
2019-08-21 13:37 ` [PATCH 12/18] iwlwifi: scan: don't pass large argument by value Luca Coelho
2019-08-21 13:37 ` [PATCH 13/18] iwlwifi: dbg_ini: align dbg tlv functions names to a single format Luca Coelho
2019-08-21 13:37 ` [PATCH 14/18] iwlwifi: remove unused regdb_ptrs allocation Luca Coelho
2019-08-21 13:37 ` [PATCH 15/18] iwlwifi: dbg: add debug periphery registers to 9000 device family Luca Coelho
2019-08-21 13:37 ` [PATCH 16/18] iwlwifi: dbg_ini: maintain buffer allocations from trans instead of TLVs buffer Luca Coelho
2019-08-21 13:37 ` [PATCH 17/18] iwlwifi: dbg_ini: use linked list to store debug TLVs Luca Coelho
2019-08-21 13:38 ` [PATCH 18/18] iwlwifi: dbg_ini: remove periphery phy and aux regions handling 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).