linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/22] iwlwifi: updates intended for v5.4 2019-08-17-2
@ 2019-08-19 14:34 Luca Coelho
  2019-08-19 14:34 ` [PATCH v2 01/22] iwlwifi: bump FW API to 49 for 22000 series Luca Coelho
                   ` (21 more replies)
  0 siblings, 22 replies; 25+ messages in thread
From: Luca Coelho @ 2019-08-19 14:34 UTC (permalink / raw)
  To: kvalo; +Cc: linux-wireless

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

Hi,

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

The changes are:

* Remove (broken) d0i3 support;
* Debug infrastructure work continues;
* Bump support FW API version to 49;
* A few clean-ups;
* Other small fixes and improvements;

In v2:

* Fixed the bogus commit message of patch 9/22.
* Added more description to the two patches Kalle commented on (12/22
  and 22/22);

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

Please review.

Cheers,
Luca.


Beker Ayala (1):
  iwlwifi: mvm: fix scan config command size

Emmanuel Grumbach (12):
  iwlwifi: mvm: remove redundant condition in
    iwl_mvm_set_hw_rfkill_state
  iwlwifi: mvm: start to remove the code for d0i3
  iwlwifi: remove all the d0i3 references
  iwlwifi: mvm: remove the tx defer for d0i3
  iwlwifi: mvm: remove the d0i3 entry/exit flow
  iwlwifi: mvm: iwl_mvm_wowlan_config_key_params is for wowlan only
  iwlwifi: mvm: remove d0i3_ap_sta_id
  iwlwifi: mvm: remove iwl_mvm_update_d0i3_power_mode
  iwlwifi: mvm: remove last leftovers of d0i3
  iwlwifi: remove CMD_HIGH_PRIO
  iwlwifi: trans: remove suspending flag
  iwlwifi: remove the code under IWLWIFI_PCIE_RTPM

Ilan Peer (1):
  iwlwifi: mvm: Block 26-tone RU OFDMA transmissions

Ilia Lin (1):
  iwlwifi: Send DQA enable command only if TVL is on

Johannes Berg (1):
  iwlwifi: mvm: remove unnecessary forward declarations

Luca Coelho (1):
  iwlwifi: bump FW API to 49 for 22000 series

Shahar S Matityahu (4):
  iwlwifi: dbg: move monitor recording functionality from header file
  iwlwifi: dbg: move debug recording stop from trans to op mode
  iwlwifi: dbg: support debug recording suspend resume command
  iwlwifi: add ldbg config cmd debug print

Shaul Triebitz (1):
  iwlwifi: mvm: add the skb length to a print

 drivers/net/wireless/intel/iwlwifi/Kconfig    |  14 -
 .../net/wireless/intel/iwlwifi/cfg/22000.c    |   2 +-
 .../net/wireless/intel/iwlwifi/fw/api/debug.h |  30 +-
 .../net/wireless/intel/iwlwifi/fw/api/mac.h   |   4 +
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c   | 102 +++-
 drivers/net/wireless/intel/iwlwifi/fw/dbg.h   |  92 +---
 drivers/net/wireless/intel/iwlwifi/fw/file.h  |   1 +
 .../net/wireless/intel/iwlwifi/iwl-op-mode.h  |   4 +-
 .../net/wireless/intel/iwlwifi/iwl-trans.h    |  13 +-
 drivers/net/wireless/intel/iwlwifi/mvm/d3.c   | 186 +------
 .../net/wireless/intel/iwlwifi/mvm/debugfs.c  | 111 -----
 drivers/net/wireless/intel/iwlwifi/mvm/fw.c   |  13 +-
 .../net/wireless/intel/iwlwifi/mvm/mac80211.c | 333 +++----------
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h  | 117 +----
 drivers/net/wireless/intel/iwlwifi/mvm/ops.c  | 460 +-----------------
 .../net/wireless/intel/iwlwifi/mvm/power.c    |  82 +---
 drivers/net/wireless/intel/iwlwifi/mvm/rx.c   |  18 +-
 drivers/net/wireless/intel/iwlwifi/mvm/scan.c |   9 +-
 drivers/net/wireless/intel/iwlwifi/mvm/sta.c  |  19 -
 drivers/net/wireless/intel/iwlwifi/mvm/tdls.c |   9 -
 .../wireless/intel/iwlwifi/mvm/time-event.c   |   8 +-
 drivers/net/wireless/intel/iwlwifi/mvm/tt.c   |  12 +-
 drivers/net/wireless/intel/iwlwifi/mvm/tx.c   |   5 +-
 .../net/wireless/intel/iwlwifi/mvm/utils.c    |   8 +-
 drivers/net/wireless/intel/iwlwifi/pcie/drv.c |  85 ----
 .../wireless/intel/iwlwifi/pcie/trans-gen2.c  |   3 -
 .../net/wireless/intel/iwlwifi/pcie/trans.c   |   7 -
 27 files changed, 251 insertions(+), 1496 deletions(-)

-- 
2.23.0.rc1


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

end of thread, other threads:[~2019-08-19 16:48 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-19 14:34 [PATCH v2 00/22] iwlwifi: updates intended for v5.4 2019-08-17-2 Luca Coelho
2019-08-19 14:34 ` [PATCH v2 01/22] iwlwifi: bump FW API to 49 for 22000 series Luca Coelho
2019-08-19 14:34 ` [PATCH v2 02/22] iwlwifi: Send DQA enable command only if TVL is on Luca Coelho
2019-08-19 14:34 ` [PATCH v2 03/22] iwlwifi: mvm: remove redundant condition in iwl_mvm_set_hw_rfkill_state Luca Coelho
2019-08-19 14:34 ` [PATCH v2 04/22] iwlwifi: mvm: Block 26-tone RU OFDMA transmissions Luca Coelho
2019-08-19 14:34 ` [PATCH v2 05/22] iwlwifi: mvm: remove unnecessary forward declarations Luca Coelho
2019-08-19 14:34 ` [PATCH v2 06/22] iwlwifi: dbg: move monitor recording functionality from header file Luca Coelho
2019-08-19 14:34 ` [PATCH v2 07/22] iwlwifi: dbg: move debug recording stop from trans to op mode Luca Coelho
2019-08-19 14:34 ` [PATCH v2 08/22] iwlwifi: dbg: support debug recording suspend resume command Luca Coelho
2019-08-19 14:34 ` [PATCH v2 09/22] iwlwifi: add ldbg config cmd debug print Luca Coelho
2019-08-19 14:55   ` Kalle Valo
2019-08-19 16:48     ` Luca Coelho
2019-08-19 14:34 ` [PATCH v2 10/22] iwlwifi: mvm: fix scan config command size Luca Coelho
2019-08-19 14:34 ` [PATCH v2 11/22] iwlwifi: mvm: add the skb length to a print Luca Coelho
2019-08-19 14:34 ` [PATCH v2 12/22] iwlwifi: mvm: start to remove the code for d0i3 Luca Coelho
2019-08-19 14:34 ` [PATCH v2 13/22] iwlwifi: remove all the d0i3 references Luca Coelho
2019-08-19 14:34 ` [PATCH v2 14/22] iwlwifi: mvm: remove the tx defer for d0i3 Luca Coelho
2019-08-19 14:35 ` [PATCH v2 15/22] iwlwifi: mvm: remove the d0i3 entry/exit flow Luca Coelho
2019-08-19 14:35 ` [PATCH v2 16/22] iwlwifi: mvm: iwl_mvm_wowlan_config_key_params is for wowlan only Luca Coelho
2019-08-19 14:35 ` [PATCH v2 17/22] iwlwifi: mvm: remove d0i3_ap_sta_id Luca Coelho
2019-08-19 14:35 ` [PATCH v2 18/22] iwlwifi: mvm: remove iwl_mvm_update_d0i3_power_mode Luca Coelho
2019-08-19 14:35 ` [PATCH v2 19/22] iwlwifi: mvm: remove last leftovers of d0i3 Luca Coelho
2019-08-19 14:35 ` [PATCH v2 20/22] iwlwifi: remove CMD_HIGH_PRIO Luca Coelho
2019-08-19 14:35 ` [PATCH v2 21/22] iwlwifi: trans: remove suspending flag Luca Coelho
2019-08-19 14:35 ` [PATCH v2 22/22] iwlwifi: remove the code under IWLWIFI_PCIE_RTPM 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).