All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/25] iwlwifi: updates intended for v4.12 2017-04-19
@ 2017-04-18 22:17 Luca Coelho
  2017-04-18 22:17 ` [PATCH 01/25] iwlwifi: mvm: remove unnecessary label in iwl_mvm_handle_rx_statistics() Luca Coelho
                   ` (24 more replies)
  0 siblings, 25 replies; 26+ messages in thread
From: Luca Coelho @ 2017-04-18 22:17 UTC (permalink / raw)
  To: linux-wireless; +Cc: kvalo, Luca Coelho

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

Hi,

This is the third patch set intended for v4.12.  These are the changes:

 * Heavy work for the A000 device series;
 * Some cleanup patches;
 * A couple of fixes;
 * Start supporting FW API version 31;
 * Geographical SAR support;
 * Support a few new PCI device IDs;

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

Please review.

Cheers,
Luca.

David Spinadel (1):
  iwlwifi: mvm: change TX_CMD_SEC_KEY_FROM_TABLE value

Emmanuel Grumbach (3):
  iwlwifi: mvm: provide the actual number of frames for the SP len
  iwlwifi: split the handler and the wake parts of the notification
    infra
  iwlwifi: bump API to 31

Haim Dreyfuss (1):
  iwlwifi: mvm: add GEO_TX_POWER_LIMIT cmd for geographic tx power table

Liad Kaufman (2):
  iwlwifi: mvm: remove unneeded reg write in iwl_mvm_up()
  iwlwifi: a000: fix memory offsets and lengths

Luca Coelho (2):
  iwlwifi: mvm: remove unnecessary label in
    iwl_mvm_handle_rx_statistics()
  iwlwifi: pcie: remove RSA race workaround

Sara Sharon (15):
  iwlwifi: mvm: fix accessing fw_id_to_mac_id
  iwlwifi: pcie: get rid of txq id assignment
  iwlwifi: mvm: support new TX response for TVQM
  iwlwifi: move to TVQM mode
  iwlwifi: mvm: do not turn on RX_FLAG_AMSDU_MORE
  iwlwifi: mvm: work around HW issue with AMSDU de-aggregation
  iwlwifi: mvm: ignore BAID for SN smaller than SSN
  iwlwifi: mvm: support change to a000 smem API
  iwlwifi: support a000 CDB product
  iwlwifi: mvm: support init extended command
  iwlwifi: mvm: disable RX queue notification for a000 devices
  iwlwifi: mvm: dump frames early on invalid rate
  iwlwifi: mvm: flip address 4 of AMSDU frames
  iwlwifi: mvm: support changing band for phy context
  iwlwifi: mvm: allow block ack response without data

Tzipi Peres (1):
  iwlwifi: add four new 8265 and 8275 series PCI IDs

 drivers/net/wireless/intel/iwlwifi/iwl-8000.c      |   4 +-
 drivers/net/wireless/intel/iwlwifi/iwl-9000.c      |   4 +-
 drivers/net/wireless/intel/iwlwifi/iwl-a000.c      |  28 +-
 drivers/net/wireless/intel/iwlwifi/iwl-config.h    |   5 +-
 .../net/wireless/intel/iwlwifi/iwl-notif-wait.c    |  10 +-
 .../net/wireless/intel/iwlwifi/iwl-notif-wait.h    |  25 +-
 drivers/net/wireless/intel/iwlwifi/iwl-prph.h      |   5 +-
 drivers/net/wireless/intel/iwlwifi/iwl-trans.h     |  38 +--
 .../net/wireless/intel/iwlwifi/mvm/fw-api-power.h  |  43 ++-
 drivers/net/wireless/intel/iwlwifi/mvm/fw-api-tx.h |  44 ++--
 drivers/net/wireless/intel/iwlwifi/mvm/fw-api.h    |  67 ++++-
 drivers/net/wireless/intel/iwlwifi/mvm/fw-dbg.c    | 287 ++++++++++++---------
 drivers/net/wireless/intel/iwlwifi/mvm/fw.c        | 184 +++++++++++--
 drivers/net/wireless/intel/iwlwifi/mvm/mac-ctxt.c  |   4 +-
 drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c  |   5 +-
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h       |  31 ++-
 drivers/net/wireless/intel/iwlwifi/mvm/ops.c       |   2 +
 drivers/net/wireless/intel/iwlwifi/mvm/phy-ctxt.c  |  21 +-
 drivers/net/wireless/intel/iwlwifi/mvm/rx.c        |  26 +-
 drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c      |  65 ++++-
 drivers/net/wireless/intel/iwlwifi/mvm/sta.c       | 127 ++++++---
 drivers/net/wireless/intel/iwlwifi/mvm/tx.c        |  40 ++-
 drivers/net/wireless/intel/iwlwifi/mvm/utils.c     |  63 +++--
 drivers/net/wireless/intel/iwlwifi/pcie/drv.c      |  11 +-
 drivers/net/wireless/intel/iwlwifi/pcie/internal.h |   4 +-
 drivers/net/wireless/intel/iwlwifi/pcie/trans.c    |  46 ----
 drivers/net/wireless/intel/iwlwifi/pcie/tx-gen2.c  | 118 +++++----
 drivers/net/wireless/intel/iwlwifi/pcie/tx.c       |  33 ++-
 28 files changed, 908 insertions(+), 432 deletions(-)

-- 
2.11.0

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

end of thread, other threads:[~2017-04-18 22:23 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-18 22:17 [PATCH 00/25] iwlwifi: updates intended for v4.12 2017-04-19 Luca Coelho
2017-04-18 22:17 ` [PATCH 01/25] iwlwifi: mvm: remove unnecessary label in iwl_mvm_handle_rx_statistics() Luca Coelho
2017-04-18 22:17 ` [PATCH 02/25] iwlwifi: mvm: fix accessing fw_id_to_mac_id Luca Coelho
2017-04-18 22:17 ` [PATCH 03/25] iwlwifi: pcie: get rid of txq id assignment Luca Coelho
2017-04-18 22:17 ` [PATCH 04/25] iwlwifi: mvm: support new TX response for TVQM Luca Coelho
2017-04-18 22:17 ` [PATCH 05/25] iwlwifi: move to TVQM mode Luca Coelho
2017-04-18 22:17 ` [PATCH 06/25] iwlwifi: mvm: remove unneeded reg write in iwl_mvm_up() Luca Coelho
2017-04-18 22:17 ` [PATCH 07/25] iwlwifi: mvm: do not turn on RX_FLAG_AMSDU_MORE Luca Coelho
2017-04-18 22:17 ` [PATCH 08/25] iwlwifi: mvm: work around HW issue with AMSDU de-aggregation Luca Coelho
2017-04-18 22:17 ` [PATCH 09/25] iwlwifi: mvm: change TX_CMD_SEC_KEY_FROM_TABLE value Luca Coelho
2017-04-18 22:17 ` [PATCH 10/25] iwlwifi: mvm: ignore BAID for SN smaller than SSN Luca Coelho
2017-04-18 22:17 ` [PATCH 11/25] iwlwifi: mvm: provide the actual number of frames for the SP len Luca Coelho
2017-04-18 22:17 ` [PATCH 12/25] iwlwifi: add four new 8265 and 8275 series PCI IDs Luca Coelho
2017-04-18 22:17 ` [PATCH 13/25] iwlwifi: mvm: support change to a000 smem API Luca Coelho
2017-04-18 22:17 ` [PATCH 14/25] iwlwifi: support a000 CDB product Luca Coelho
2017-04-18 22:17 ` [PATCH 15/25] iwlwifi: pcie: remove RSA race workaround Luca Coelho
2017-04-18 22:17 ` [PATCH 16/25] iwlwifi: mvm: add GEO_TX_POWER_LIMIT cmd for geographic tx power table Luca Coelho
2017-04-18 22:17 ` [PATCH 17/25] iwlwifi: mvm: support init extended command Luca Coelho
2017-04-18 22:17 ` [PATCH 18/25] iwlwifi: mvm: disable RX queue notification for a000 devices Luca Coelho
2017-04-18 22:17 ` [PATCH 19/25] iwlwifi: mvm: dump frames early on invalid rate Luca Coelho
2017-04-18 22:17 ` [PATCH 20/25] iwlwifi: split the handler and the wake parts of the notification infra Luca Coelho
2017-04-18 22:17 ` [PATCH 21/25] iwlwifi: mvm: flip address 4 of AMSDU frames Luca Coelho
2017-04-18 22:17 ` [PATCH 22/25] iwlwifi: mvm: support changing band for phy context Luca Coelho
2017-04-18 22:17 ` [PATCH 23/25] iwlwifi: a000: fix memory offsets and lengths Luca Coelho
2017-04-18 22:17 ` [PATCH 24/25] iwlwifi: bump API to 31 Luca Coelho
2017-04-18 22:17 ` [PATCH 25/25] iwlwifi: mvm: allow block ack response without data 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.