All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/16] iwlwifi: updates intended for v5.5 2019-10-12-v2
@ 2019-10-14  7:20 Luca Coelho
  2019-10-14  7:20 ` [PATCH v2 01/16] iwlwifi: dbg_ini: load external dbg cfg after internal cfg is loaded Luca Coelho
                   ` (15 more replies)
  0 siblings, 16 replies; 21+ messages in thread
From: Luca Coelho @ 2019-10-14  7:20 UTC (permalink / raw)
  To: kvalo; +Cc: linux-wireless

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

Hi,

Here's v2 of the first set of patches intended for v5.5.  This one
contains only changes to our debugging infrastructure.  There was a
big revamp on what we had before and this patchset is a bit large, but
I didn't see a reason to break it in two artificially.

In v2:

   * add dbg.o to iwlwifi's Makefile when MVM is not defined [kbuildbot].


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

Please review.

Cheers,
Luca.



Shahar S Matityahu (16):
  iwlwifi: dbg_ini: load external dbg cfg after internal cfg is loaded
  iwlwifi: dbg_ini: use new region TLV in dump flow
  iwlwifi: dbg_ini: use new trigger TLV in dump flow
  iwlwifi: dbg: remove multi buffers infra
  iwlwifi: dbg_ini: add monitor dumping support
  iwlwifi: dbg_ini: add error tables dumping support
  iwlwifi: dbg_ini: use new API in dump info
  iwlwifi: dbg_ini: add TLV allocation new API support
  iwlwifi: dbg_ini: implement time point handling
  iwlwifi: dbg_ini: implement monitor allocation flow
  iwlwifi: dbg_ini: add periodic trigger new API support
  iwlwifi: dbg_ini: support domain changing via debugfs
  iwlwifi: dbg_ini: support FW response/notification region type
  iwlwifi: dbg_ini: rename external debug configuration file
  iwlwifi: dbg_ini: remove old API and some related code
  iwlwifi: dbg_ini: support FW notification dumping in case of missed
    beacon

 drivers/net/wireless/intel/iwlwifi/Makefile   |   3 +-
 .../net/wireless/intel/iwlwifi/cfg/22000.c    |  55 +-
 drivers/net/wireless/intel/iwlwifi/cfg/9000.c |  25 +-
 .../wireless/intel/iwlwifi/fw/api/dbg-tlv.h   | 514 ++++------
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c   | 800 ++++++++++------
 drivers/net/wireless/intel/iwlwifi/fw/dbg.h   |  47 +-
 .../net/wireless/intel/iwlwifi/fw/debugfs.c   |  37 +
 .../wireless/intel/iwlwifi/fw/error-dump.h    |  63 +-
 drivers/net/wireless/intel/iwlwifi/fw/file.h  |   3 +-
 drivers/net/wireless/intel/iwlwifi/fw/img.h   |  12 -
 .../net/wireless/intel/iwlwifi/fw/runtime.h   |  58 +-
 .../net/wireless/intel/iwlwifi/iwl-config.h   |  28 +-
 .../net/wireless/intel/iwlwifi/iwl-dbg-tlv.c  | 891 +++++++++++++++++-
 .../net/wireless/intel/iwlwifi/iwl-dbg-tlv.h  |  22 +-
 drivers/net/wireless/intel/iwlwifi/iwl-drv.c  |   4 +-
 drivers/net/wireless/intel/iwlwifi/iwl-prph.h |   7 +
 .../net/wireless/intel/iwlwifi/iwl-trans.h    |  40 +-
 .../net/wireless/intel/iwlwifi/mvm/mac-ctxt.c |   3 +-
 .../intel/iwlwifi/pcie/ctxt-info-gen3.c       |  77 +-
 .../net/wireless/intel/iwlwifi/pcie/trans.c   | 149 +--
 20 files changed, 2005 insertions(+), 833 deletions(-)

-- 
2.23.0


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

end of thread, other threads:[~2019-10-18  8:41 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-14  7:20 [PATCH v2 00/16] iwlwifi: updates intended for v5.5 2019-10-12-v2 Luca Coelho
2019-10-14  7:20 ` [PATCH v2 01/16] iwlwifi: dbg_ini: load external dbg cfg after internal cfg is loaded Luca Coelho
2019-10-14  7:20 ` [PATCH v2 02/16] iwlwifi: dbg_ini: use new region TLV in dump flow Luca Coelho
2019-10-14  7:20 ` [PATCH v2 03/16] iwlwifi: dbg_ini: use new trigger " Luca Coelho
2019-10-18  8:25   ` Luca Coelho
2019-10-14  7:20 ` [PATCH v2 04/16] iwlwifi: dbg: remove multi buffers infra Luca Coelho
2019-10-14  7:20 ` [PATCH v2 05/16] iwlwifi: dbg_ini: add monitor dumping support Luca Coelho
2019-10-14  7:20 ` [PATCH v2 06/16] iwlwifi: dbg_ini: add error tables " Luca Coelho
2019-10-14  7:20 ` [PATCH v2 07/16] iwlwifi: dbg_ini: use new API in dump info Luca Coelho
2019-10-14  7:20 ` [PATCH v2 08/16] iwlwifi: dbg_ini: add TLV allocation new API support Luca Coelho
2019-10-14  7:20 ` [PATCH v2 09/16] iwlwifi: dbg_ini: implement time point handling Luca Coelho
2019-10-14  7:20 ` [PATCH v2 10/16] iwlwifi: dbg_ini: implement monitor allocation flow Luca Coelho
2019-10-14  7:20 ` [PATCH v2 11/16] iwlwifi: dbg_ini: add periodic trigger new API support Luca Coelho
2019-10-14  7:20 ` [PATCH v2 12/16] iwlwifi: dbg_ini: support domain changing via debugfs Luca Coelho
2019-10-16  7:07   ` Kalle Valo
2019-10-18  8:30     ` Luca Coelho
2019-10-18  8:40   ` [PATCH v2 03/16] " Luca Coelho
2019-10-14  7:20 ` [PATCH v2 13/16] iwlwifi: dbg_ini: support FW response/notification region type Luca Coelho
2019-10-14  7:20 ` [PATCH v2 14/16] iwlwifi: dbg_ini: rename external debug configuration file Luca Coelho
2019-10-14  7:20 ` [PATCH v2 15/16] iwlwifi: dbg_ini: remove old API and some related code Luca Coelho
2019-10-14  7:20 ` [PATCH v2 16/16] iwlwifi: dbg_ini: support FW notification dumping in case of missed beacon 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.