linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/11] iwlwifi: updates intended for v5.8 2020-05-08-2
@ 2020-05-29  6:39 Luca Coelho
  2020-05-29  6:39 ` [PATCH 01/11] iwlwifi: set NO_HE if the regulatory domain forbids it Luca Coelho
                   ` (10 more replies)
  0 siblings, 11 replies; 13+ messages in thread
From: Luca Coelho @ 2020-05-29  6:39 UTC (permalink / raw)
  To: kvalo; +Cc: linux-wireless

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

Hi,

Here's the an update to the sixth set of patches intended for v5.8.
It's the usual development, new features, cleanups and bugfixes.

The changes are:

* Update range request API;
* Add ACPI DSM support;
* Support enabling 5.2GHz bands in Indonesia via ACPI;
* Bump FW API version to 56;
* TX queues refactoring started;
* Fix one memory leak;
* Some other small fixes and clean-ups;

In v2:
  * Replaced one "static const" to "const static" [04/11];
  * Return int instead of ERR_PTR() in iwl_acpi_get_dsm_u8() [04/11];
  * Return bool instead of funky logic [05/11].

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

Please review.

Cheers,
Luca.


Avraham Stern (1):
  iwlwifi: mvm: add support for range request version 10

Gil Adam (2):
  iwlwifi: acpi: support device specific method (DSM)
  iwlwifi: acpi: evaluate dsm to enable 5.2 bands in Indonesia

Haim Dreyfuss (2):
  iwlwifi: set NO_HE if the regulatory domain forbids it
  iwlwifi: pcie: don't count on the FW to set persistence mode

Johannes Berg (1):
  iwlwifi: pcie: gen3: indicate 8k/12k RB size to device

Luca Coelho (1):
  iwlwifi: bump FW API to 56 for AX devices

Mordechay Goodstein (3):
  iwlwifi: pcie: keep trans instead of trans_pcie in iwl_txq
  iwlwifi: move iwl_txq and substructures to a common trans header
  iwlwifi: move txq-specific from trans_pcie to common trans

Sharon (1):
  iwlwifi: mvm: fix aux station leak

 .../net/wireless/intel/iwlwifi/cfg/22000.c    |   2 +-
 drivers/net/wireless/intel/iwlwifi/fw/acpi.c  |  99 ++++++++++++--
 drivers/net/wireless/intel/iwlwifi/fw/acpi.h  |  22 +++
 .../wireless/intel/iwlwifi/fw/api/location.h  |  14 +-
 .../wireless/intel/iwlwifi/fw/api/nvm-reg.h   |  34 ++++-
 .../intel/iwlwifi/iwl-context-info-gen3.h     |  12 +-
 .../wireless/intel/iwlwifi/iwl-nvm-parse.c    |   5 +
 .../net/wireless/intel/iwlwifi/iwl-trans.h    | 128 ++++++++++++++++++
 .../intel/iwlwifi/mvm/ftm-initiator.c         |  42 +++++-
 drivers/net/wireless/intel/iwlwifi/mvm/fw.c   |  43 ++++++
 .../net/wireless/intel/iwlwifi/mvm/mac80211.c |   5 +-
 drivers/net/wireless/intel/iwlwifi/mvm/sta.c  |  18 ++-
 drivers/net/wireless/intel/iwlwifi/mvm/sta.h  |   6 +-
 .../intel/iwlwifi/pcie/ctxt-info-gen3.c       |  10 +-
 .../wireless/intel/iwlwifi/pcie/ctxt-info.c   |   6 +-
 .../wireless/intel/iwlwifi/pcie/internal.h    | 121 +----------------
 drivers/net/wireless/intel/iwlwifi/pcie/rx.c  |   6 +-
 .../wireless/intel/iwlwifi/pcie/trans-gen2.c  |  11 +-
 .../net/wireless/intel/iwlwifi/pcie/trans.c   |  47 +++----
 .../net/wireless/intel/iwlwifi/pcie/tx-gen2.c |  70 +++++-----
 drivers/net/wireless/intel/iwlwifi/pcie/tx.c  | 120 ++++++++--------
 21 files changed, 524 insertions(+), 297 deletions(-)

-- 
2.26.2


^ permalink raw reply	[flat|nested] 13+ messages in thread
* [PATCH 00/11] iwlwifi: updates intended for v5.8 2020-05-08
@ 2020-05-08 14:07 Luca Coelho
  2020-05-08 14:07 ` [PATCH 08/11] iwlwifi: move txq-specific from trans_pcie to common trans Luca Coelho
  0 siblings, 1 reply; 13+ messages in thread
From: Luca Coelho @ 2020-05-08 14:07 UTC (permalink / raw)
  To: kvalo; +Cc: linux-wireless

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

Hi,

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

The changes are:

* Update range request API;
* Add ACPI DSM support;
* Support enabling 5.2GHz bands in Indonesia via ACPI;
* Bump FW API version to 56;
* TX queues refactoring started;
* Fix one memory leak;
* 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.


Avraham Stern (1):
  iwlwifi: mvm: add support for range request version 10

Gil Adam (2):
  iwlwifi: acpi: support device specific method (DSM)
  iwlwifi: acpi: evaluate dsm to enable 5.2 bands in Indonesia

Haim Dreyfuss (2):
  iwlwifi: set NO_HE if the regulatory domain forbids it
  iwlwifi: pcie: don't count on the FW to set persistence mode

Johannes Berg (1):
  iwlwifi: pcie: gen3: indicate 8k/12k RB size to device

Luca Coelho (1):
  iwlwifi: bump FW API to 56 for AX devices

Mordechay Goodstein (3):
  iwlwifi: pcie: keep trans instead of trans_pcie in iwl_txq
  iwlwifi: move iwl_txq and substructures to a common trans header
  iwlwifi: move txq-specific from trans_pcie to common trans

Sharon (1):
  iwlwifi: mvm: fix aux station leak

 .../net/wireless/intel/iwlwifi/cfg/22000.c    |   2 +-
 drivers/net/wireless/intel/iwlwifi/fw/acpi.c  |  99 ++++++++++++--
 drivers/net/wireless/intel/iwlwifi/fw/acpi.h  |  22 +++
 .../wireless/intel/iwlwifi/fw/api/location.h  |  14 +-
 .../wireless/intel/iwlwifi/fw/api/nvm-reg.h   |  34 ++++-
 .../intel/iwlwifi/iwl-context-info-gen3.h     |  12 +-
 .../wireless/intel/iwlwifi/iwl-nvm-parse.c    |   5 +
 .../net/wireless/intel/iwlwifi/iwl-trans.h    | 128 ++++++++++++++++++
 .../intel/iwlwifi/mvm/ftm-initiator.c         |  42 +++++-
 drivers/net/wireless/intel/iwlwifi/mvm/fw.c   |  43 ++++++
 .../net/wireless/intel/iwlwifi/mvm/mac80211.c |   5 +-
 drivers/net/wireless/intel/iwlwifi/mvm/sta.c  |  18 ++-
 drivers/net/wireless/intel/iwlwifi/mvm/sta.h  |   6 +-
 .../intel/iwlwifi/pcie/ctxt-info-gen3.c       |  10 +-
 .../wireless/intel/iwlwifi/pcie/ctxt-info.c   |   6 +-
 .../wireless/intel/iwlwifi/pcie/internal.h    | 121 +----------------
 drivers/net/wireless/intel/iwlwifi/pcie/rx.c  |   6 +-
 .../wireless/intel/iwlwifi/pcie/trans-gen2.c  |  11 +-
 .../net/wireless/intel/iwlwifi/pcie/trans.c   |  47 +++----
 .../net/wireless/intel/iwlwifi/pcie/tx-gen2.c |  70 +++++-----
 drivers/net/wireless/intel/iwlwifi/pcie/tx.c  | 120 ++++++++--------
 21 files changed, 524 insertions(+), 297 deletions(-)

-- 
2.26.2


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

end of thread, other threads:[~2020-05-29  6:40 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-29  6:39 [PATCH 00/11] iwlwifi: updates intended for v5.8 2020-05-08-2 Luca Coelho
2020-05-29  6:39 ` [PATCH 01/11] iwlwifi: set NO_HE if the regulatory domain forbids it Luca Coelho
2020-05-29  6:39 ` [PATCH 02/11] iwlwifi: pcie: don't count on the FW to set persistence mode Luca Coelho
2020-05-29  6:39 ` [PATCH 03/11] iwlwifi: pcie: keep trans instead of trans_pcie in iwl_txq Luca Coelho
2020-05-29  6:39 ` [PATCH 04/11] iwlwifi: acpi: support device specific method (DSM) Luca Coelho
2020-05-29  6:39 ` [PATCH 05/11] iwlwifi: acpi: evaluate dsm to enable 5.2 bands in Indonesia Luca Coelho
2020-05-29  6:39 ` [PATCH 06/11] iwlwifi: pcie: gen3: indicate 8k/12k RB size to device Luca Coelho
2020-05-29  6:39 ` [PATCH 07/11] iwlwifi: move iwl_txq and substructures to a common trans header Luca Coelho
2020-05-29  6:39 ` [PATCH 08/11] iwlwifi: move txq-specific from trans_pcie to common trans Luca Coelho
2020-05-29  6:39 ` [PATCH 09/11] iwlwifi: mvm: fix aux station leak Luca Coelho
2020-05-29  6:39 ` [PATCH 10/11] iwlwifi: mvm: add support for range request version 10 Luca Coelho
2020-05-29  6:39 ` [PATCH 11/11] iwlwifi: bump FW API to 56 for AX devices Luca Coelho
  -- strict thread matches above, loose matches on Subject: below --
2020-05-08 14:07 [PATCH 00/11] iwlwifi: updates intended for v5.8 2020-05-08 Luca Coelho
2020-05-08 14:07 ` [PATCH 08/11] iwlwifi: move txq-specific from trans_pcie to common trans 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).