All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/14] iwlwifi: updates intended for v5.7 2020-03-23
@ 2020-03-23 13:19 Luca Coelho
  2020-03-23 13:19 ` [PATCH 01/14] iwlwifi: mvm: add soc latency support Luca Coelho
                   ` (13 more replies)
  0 siblings, 14 replies; 18+ messages in thread
From: Luca Coelho @ 2020-03-23 13:19 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.7.  It's the usual
development, new features, cleanups and bugfixes.

The changes are:

* Refactoring of the device selection algorithms continues;
* Improvement in the initialization fo SoC-based devices;
* Support for FW scan API;
* Some additions to our FW debuggging capabilities;
* Some other small fixes and clean-ups;

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

Please review.

Cheers,
Luca.


Johannes Berg (3):
  iwlwifi: pass trans and NVM data to HE capability parsing
  iwlwifi: mvm: rs-fw: fix some indentation
  iwlwifi: mvm: enable SF also when we have HE

Luca Coelho (9):
  iwlwifi: yoyo: add PCI config space region type
  iwlwifi: pcie: implement read_config32
  iwlwifi: remove redundant iwl9560_2ac_cfg struct
  iwlwifi: move integrated, extra_phy and soc_latency to trans_cfg
  iwlwifi: remove some unused extern declarations from iwl-config.h
  iwlwifi: add HW step to new cfg device table
  iwlwifi: convert all Qu with Jf devices to the new config table
  iwlwifi: convert QnJ with Jf devices to new config table
  iwlwifi: remove unnecessary cfg mangling for Qu C and QuZ with Jf

Shahar S Matityahu (2):
  iwlwifi: mvm: add soc latency support
  iwlwifi: scan: support scan req cmd ver 14

 .../net/wireless/intel/iwlwifi/cfg/22000.c    | 252 ++-----
 drivers/net/wireless/intel/iwlwifi/cfg/9000.c |  32 +-
 .../wireless/intel/iwlwifi/fw/api/commands.h  |   9 +-
 .../net/wireless/intel/iwlwifi/fw/api/scan.h  |  52 +-
 .../net/wireless/intel/iwlwifi/fw/api/soc.h   |  83 ++
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c   |  39 +-
 drivers/net/wireless/intel/iwlwifi/fw/file.h  |  11 +-
 .../net/wireless/intel/iwlwifi/iwl-config.h   |  57 +-
 .../net/wireless/intel/iwlwifi/iwl-dbg-tlv.c  |   6 +
 .../wireless/intel/iwlwifi/iwl-nvm-parse.c    |   8 +-
 .../net/wireless/intel/iwlwifi/iwl-trans.h    |   3 +
 .../net/wireless/intel/iwlwifi/mvm/fw-api.h   |   1 +
 drivers/net/wireless/intel/iwlwifi/mvm/fw.c   |  35 +-
 .../net/wireless/intel/iwlwifi/mvm/rs-fw.c    |   3 +-
 drivers/net/wireless/intel/iwlwifi/mvm/scan.c | 129 +++-
 drivers/net/wireless/intel/iwlwifi/mvm/sf.c   |   8 +-
 drivers/net/wireless/intel/iwlwifi/pcie/drv.c | 708 +++++++++---------
 drivers/net/wireless/intel/iwlwifi/pcie/rx.c  |   2 +-
 .../net/wireless/intel/iwlwifi/pcie/trans.c   |  10 +-
 19 files changed, 815 insertions(+), 633 deletions(-)
 create mode 100644 drivers/net/wireless/intel/iwlwifi/fw/api/soc.h

-- 
2.25.1


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

end of thread, other threads:[~2020-03-26  7:32 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-23 13:19 [PATCH 00/14] iwlwifi: updates intended for v5.7 2020-03-23 Luca Coelho
2020-03-23 13:19 ` [PATCH 01/14] iwlwifi: mvm: add soc latency support Luca Coelho
2020-03-24 15:07   ` Kalle Valo
2020-03-26  6:49     ` Luca Coelho
2020-03-26  7:32       ` Kalle Valo
2020-03-23 13:19 ` [PATCH 02/14] iwlwifi: yoyo: add PCI config space region type Luca Coelho
2020-03-23 13:19 ` [PATCH 03/14] iwlwifi: pcie: implement read_config32 Luca Coelho
2020-03-23 13:19 ` [PATCH 04/14] iwlwifi: pass trans and NVM data to HE capability parsing Luca Coelho
2020-03-23 13:19 ` [PATCH 05/14] iwlwifi: scan: support scan req cmd ver 14 Luca Coelho
2020-03-23 13:19 ` [PATCH 06/14] iwlwifi: mvm: rs-fw: fix some indentation Luca Coelho
2020-03-23 13:19 ` [PATCH 07/14] iwlwifi: remove redundant iwl9560_2ac_cfg struct Luca Coelho
2020-03-23 13:19 ` [PATCH 08/14] iwlwifi: mvm: enable SF also when we have HE Luca Coelho
2020-03-23 13:19 ` [PATCH 09/14] iwlwifi: move integrated, extra_phy and soc_latency to trans_cfg Luca Coelho
2020-03-23 13:19 ` [PATCH 10/14] iwlwifi: remove some unused extern declarations from iwl-config.h Luca Coelho
2020-03-23 13:19 ` [PATCH 11/14] iwlwifi: add HW step to new cfg device table Luca Coelho
2020-03-23 13:19 ` [PATCH 12/14] iwlwifi: convert all Qu with Jf devices to the new config table Luca Coelho
2020-03-23 13:19 ` [PATCH 13/14] iwlwifi: convert QnJ with Jf devices to " Luca Coelho
2020-03-23 13:19 ` [PATCH 14/14] iwlwifi: remove unnecessary cfg mangling for Qu C and QuZ with Jf Luca Coelho

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.