linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/21] iwlwifi: updates intended for v5.1 2019-01-27
@ 2019-01-27 10:18 Luca Coelho
  2019-01-27 10:18 ` [PATCH 01/21] iwlwifi: mvm: fix A-MPDU reference assignment Luca Coelho
                   ` (20 more replies)
  0 siblings, 21 replies; 22+ messages in thread
From: Luca Coelho @ 2019-01-27 10:18 UTC (permalink / raw)
  To: kvalo; +Cc: linux-wireless, Luca Coelho

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

Hi,

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

The changes are:

* Reworked the TOF/CSI implementation;
* Work on new debugging infra continues;
* Some product name updates in the human-readable strings
* General bugfixes;
* Other cleanups and small fixes;

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

Please review.

Cheers,
Luca.


Andrei Otcheretianski (1):
  iwlwifi: mvm: Disconnect on large beacon loss

David Spinadel (1):
  iwlwifi: mvm: Change FW channel info API

Emmanuel Grumbach (1):
  iwlwifi: mvm: freeze management TXQ timer when station goes to sleep

Ihab Zhaika (1):
  iwlwifi: update product name for 9260 and 9560

Johannes Berg (8):
  iwlwifi: mvm: fix A-MPDU reference assignment
  iwlwifi: remove TOF implementation
  iwlwifi: dvm: remove useless condition
  iwlwifi: pcie: use u32* argument to iwl_trans_get_fw_monitor_len()
  iwlwifi: mvm: add location APIs
  iwlwifi: mvm: implement CSI reporting
  iwlwifi: mvm: document monitor mode reorder buffer bypass
  iwlwifi: mvm: include configured sniffer AID in radiotap

Mordechay Goodstein (1):
  iwlwifi: mvm: disable completely low latency mode with debugfs

Sara Sharon (1):
  iwlwifi: mvm: get rid of tx_path_lock

Shahar S Matityahu (6):
  iwlwifi: trigger dump on assert prior to setting the device up
  iwlwifi: dbg_ini: allocate dram buffer with proper flags
  iwlwifi: dbg_ini: properly handle ini user trigger
  iwlwifi: dbg_ini: retrieve dump_delay value properly
  iwlwifi: dbg_ini: set dump mask BIT(n) instead of n
  iwiwifi: fix bad monitor buffer register addresses

Shaul Triebitz (1):
  iwlwifi: mvm: update firmware when MU EDCA params change

 .../net/wireless/intel/iwlwifi/cfg/22000.c    |   6 +
 drivers/net/wireless/intel/iwlwifi/cfg/9000.c |  29 +
 drivers/net/wireless/intel/iwlwifi/dvm/tt.c   |   5 +-
 .../wireless/intel/iwlwifi/fw/api/commands.h  |  15 +-
 .../wireless/intel/iwlwifi/fw/api/datapath.h  |  55 ++
 .../wireless/intel/iwlwifi/fw/api/location.h  | 711 +++++++++++++++
 .../wireless/intel/iwlwifi/fw/api/phy-ctxt.h  |  51 +-
 .../net/wireless/intel/iwlwifi/fw/api/rx.h    |   2 +
 .../net/wireless/intel/iwlwifi/fw/api/tdls.h  |  19 +-
 .../intel/iwlwifi/fw/api/time-event.h         |  34 +-
 .../net/wireless/intel/iwlwifi/fw/api/tof.h   | 393 ---------
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c   |  16 +-
 drivers/net/wireless/intel/iwlwifi/fw/file.h  |  12 +-
 .../net/wireless/intel/iwlwifi/iwl-config.h   |   5 +
 drivers/net/wireless/intel/iwlwifi/iwl-prph.h |   4 +-
 .../net/wireless/intel/iwlwifi/mvm/Makefile   |   1 -
 .../wireless/intel/iwlwifi/mvm/debugfs-vif.c  | 813 +-----------------
 .../net/wireless/intel/iwlwifi/mvm/debugfs.c  |  45 +-
 .../net/wireless/intel/iwlwifi/mvm/fw-api.h   |   4 +-
 .../net/wireless/intel/iwlwifi/mvm/mac-ctxt.c |   5 +-
 .../net/wireless/intel/iwlwifi/mvm/mac80211.c |  88 +-
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h  | 135 ++-
 drivers/net/wireless/intel/iwlwifi/mvm/ops.c  |  26 +-
 .../net/wireless/intel/iwlwifi/mvm/phy-ctxt.c |  24 +-
 drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c |  63 +-
 drivers/net/wireless/intel/iwlwifi/mvm/sta.c  |   4 +-
 drivers/net/wireless/intel/iwlwifi/mvm/tdls.c |  33 +-
 .../wireless/intel/iwlwifi/mvm/time-event.c   |   4 +-
 drivers/net/wireless/intel/iwlwifi/mvm/tof.c  | 305 -------
 drivers/net/wireless/intel/iwlwifi/mvm/tof.h  |  89 --
 drivers/net/wireless/intel/iwlwifi/pcie/drv.c | 188 ++--
 .../net/wireless/intel/iwlwifi/pcie/trans.c   |   2 +-
 32 files changed, 1380 insertions(+), 1806 deletions(-)
 create mode 100644 drivers/net/wireless/intel/iwlwifi/fw/api/location.h
 delete mode 100644 drivers/net/wireless/intel/iwlwifi/fw/api/tof.h
 delete mode 100644 drivers/net/wireless/intel/iwlwifi/mvm/tof.c
 delete mode 100644 drivers/net/wireless/intel/iwlwifi/mvm/tof.h

-- 
2.20.1


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

end of thread, other threads:[~2019-01-27 10:20 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-27 10:18 [PATCH 00/21] iwlwifi: updates intended for v5.1 2019-01-27 Luca Coelho
2019-01-27 10:18 ` [PATCH 01/21] iwlwifi: mvm: fix A-MPDU reference assignment Luca Coelho
2019-01-27 10:18 ` [PATCH 02/21] iwlwifi: mvm: get rid of tx_path_lock Luca Coelho
2019-01-27 10:18 ` [PATCH 03/21] iwlwifi: remove TOF implementation Luca Coelho
2019-01-27 10:18 ` [PATCH 04/21] iwlwifi: dvm: remove useless condition Luca Coelho
2019-01-27 10:18 ` [PATCH 05/21] iwlwifi: pcie: use u32* argument to iwl_trans_get_fw_monitor_len() Luca Coelho
2019-01-27 10:18 ` [PATCH 06/21] iwlwifi: mvm: Disconnect on large beacon loss Luca Coelho
2019-01-27 10:18 ` [PATCH 07/21] iwlwifi: mvm: add location APIs Luca Coelho
2019-01-27 10:18 ` [PATCH 08/21] iwlwifi: mvm: implement CSI reporting Luca Coelho
2019-01-27 10:18 ` [PATCH 09/21] iwlwifi: mvm: Change FW channel info API Luca Coelho
2019-01-27 10:18 ` [PATCH 10/21] iwlwifi: mvm: freeze management TXQ timer when station goes to sleep Luca Coelho
2019-01-27 10:18 ` [PATCH 11/21] iwlwifi: mvm: disable completely low latency mode with debugfs Luca Coelho
2019-01-27 10:18 ` [PATCH 12/21] iwlwifi: update product name for 9260 and 9560 Luca Coelho
2019-01-27 10:19 ` [PATCH 13/21] iwlwifi: mvm: document monitor mode reorder buffer bypass Luca Coelho
2019-01-27 10:19 ` [PATCH 14/21] iwlwifi: mvm: include configured sniffer AID in radiotap Luca Coelho
2019-01-27 10:19 ` [PATCH 15/21] iwlwifi: trigger dump on assert prior to setting the device up Luca Coelho
2019-01-27 10:19 ` [PATCH 16/21] iwlwifi: mvm: update firmware when MU EDCA params change Luca Coelho
2019-01-27 10:19 ` [PATCH 17/21] iwlwifi: dbg_ini: allocate dram buffer with proper flags Luca Coelho
2019-01-27 10:19 ` [PATCH 18/21] iwlwifi: dbg_ini: properly handle ini user trigger Luca Coelho
2019-01-27 10:19 ` [PATCH 19/21] iwlwifi: dbg_ini: retrieve dump_delay value properly Luca Coelho
2019-01-27 10:19 ` [PATCH 20/21] iwlwifi: dbg_ini: set dump mask BIT(n) instead of n Luca Coelho
2019-01-27 10:19 ` [PATCH 21/21] iwiwifi: fix bad monitor buffer register addresses 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).