All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/12] iwlwifi: updates intended for v5.5 2019-20
@ 2019-10-20  8:55 Luca Coelho
  2019-10-20  8:55 ` [PATCH 01/12] iwlwifi: remove redundant assignment to variable bufsz Luca Coelho
                   ` (11 more replies)
  0 siblings, 12 replies; 17+ messages in thread
From: Luca Coelho @ 2019-10-20  8:55 UTC (permalink / raw)
  To: kvalo; +Cc: linux-wireless

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

Hi,

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

The changes are:

* Move ACPI handling code fully into acpi.c;
* Increase the CTDP budget to improve signal strength;
* A fix for compilation with no ACPI enabled;
* Enable adaptive dwell on P2P interfaces;
* Another scan FW API update;
* 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.


Colin Ian King (1):
  iwlwifi: remove redundant assignment to variable bufsz

Emmanuel Grumbach (1):
  iwlwifi: mvm: sync the iwl_mvm_session_prot_notif layout

Haim Dreyfuss (1):
  iwlwifi: mvm: don't skip mgmt tid when flushing all tids

Ihab Zhaika (1):
  iwlwifi: refactor the SAR tables from mvm to acpi

Johannes Berg (3):
  iwlwifi: remove IWL_DEVICE_22560/IWL_DEVICE_FAMILY_22560
  iwlwifi: 22000: fix some indentation
  iwlwifi: mvm: fix non-ACPI function

Mordechay Goodstein (1):
  iwlwifi: mvm: start CTDP budget from 2400mA

Shahar S Matityahu (3):
  iwlwifi: scan: make new scan req versioning flow
  iwlwifi: scan: support scan req cmd ver 12
  iwlwifi: mvm: scan: enable adaptive dwell in p2p

Wang Xuerui (1):
  iwlwifi: mvm: fix unaligned read of rx_pkt_status

 .../net/wireless/intel/iwlwifi/cfg/22000.c    |  50 +-
 drivers/net/wireless/intel/iwlwifi/fw/acpi.c  | 297 +++++++++++-
 drivers/net/wireless/intel/iwlwifi/fw/acpi.h  |  84 ++++
 .../net/wireless/intel/iwlwifi/fw/api/scan.h  | 161 ++++---
 .../intel/iwlwifi/fw/api/time-event.h         |   4 +-
 .../net/wireless/intel/iwlwifi/fw/api/tx.h    |   6 +-
 .../net/wireless/intel/iwlwifi/fw/runtime.h   |  11 +
 .../net/wireless/intel/iwlwifi/iwl-config.h   |   1 -
 drivers/net/wireless/intel/iwlwifi/iwl-csr.h  |   2 -
 drivers/net/wireless/intel/iwlwifi/iwl-drv.c  |   2 +-
 drivers/net/wireless/intel/iwlwifi/iwl-fh.h   |   2 +-
 .../net/wireless/intel/iwlwifi/mvm/debugfs.c  |   7 +-
 drivers/net/wireless/intel/iwlwifi/mvm/fw.c   | 361 ++-------------
 .../net/wireless/intel/iwlwifi/mvm/mac80211.c |   2 +-
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h  |  30 +-
 drivers/net/wireless/intel/iwlwifi/mvm/ops.c  |   6 +-
 drivers/net/wireless/intel/iwlwifi/mvm/rx.c   |   3 +-
 drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c |   4 +-
 drivers/net/wireless/intel/iwlwifi/mvm/scan.c | 426 ++++++++++++++----
 drivers/net/wireless/intel/iwlwifi/mvm/tt.c   |  43 +-
 drivers/net/wireless/intel/iwlwifi/mvm/tx.c   |   4 +-
 .../wireless/intel/iwlwifi/pcie/internal.h    |   4 +-
 drivers/net/wireless/intel/iwlwifi/pcie/rx.c  |  53 +--
 .../wireless/intel/iwlwifi/pcie/trans-gen2.c  |   4 +-
 .../net/wireless/intel/iwlwifi/pcie/trans.c   |  31 +-
 .../net/wireless/intel/iwlwifi/pcie/tx-gen2.c |  12 +-
 drivers/net/wireless/intel/iwlwifi/pcie/tx.c  |   2 +-
 27 files changed, 966 insertions(+), 646 deletions(-)

-- 
2.23.0


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

end of thread, other threads:[~2020-01-23  5:50 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-20  8:55 [PATCH 00/12] iwlwifi: updates intended for v5.5 2019-20 Luca Coelho
2019-10-20  8:55 ` [PATCH 01/12] iwlwifi: remove redundant assignment to variable bufsz Luca Coelho
2019-10-20  8:55 ` [PATCH 02/12] iwlwifi: mvm: fix unaligned read of rx_pkt_status Luca Coelho
2019-10-20  8:55 ` [PATCH 03/12] iwlwifi: scan: make new scan req versioning flow Luca Coelho
2019-10-20 14:41   ` [PATCH v2 " Luca Coelho
2019-10-20  8:55 ` [PATCH 04/12] iwlwifi: scan: support scan req cmd ver 12 Luca Coelho
2019-10-20  8:55 ` [PATCH 05/12] iwlwifi: refactor the SAR tables from mvm to acpi Luca Coelho
2019-10-20  8:55 ` [PATCH 06/12] iwlwifi: mvm: scan: enable adaptive dwell in p2p Luca Coelho
2019-10-20  8:55 ` [PATCH 07/12] iwlwifi: mvm: don't skip mgmt tid when flushing all tids Luca Coelho
2019-10-25  8:04   ` Kalle Valo
2019-10-20  8:55 ` [PATCH 08/12] iwlwifi: mvm: start CTDP budget from 2400mA Luca Coelho
2019-10-20  8:55 ` [PATCH 09/12] iwlwifi: mvm: sync the iwl_mvm_session_prot_notif layout Luca Coelho
2019-10-20  8:55 ` [PATCH 10/12] iwlwifi: remove IWL_DEVICE_22560/IWL_DEVICE_FAMILY_22560 Luca Coelho
2019-10-20  8:55 ` [PATCH 11/12] iwlwifi: 22000: fix some indentation Luca Coelho
2019-10-20  8:55 ` [PATCH 12/12] iwlwifi: mvm: fix non-ACPI function Luca Coelho
2020-01-23  4:02   ` Stable Backport Request: " Jiaxun Yang
2020-01-23  5:42   ` Jiaxun Yang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.