linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Luca Coelho <luca@coelho.fi>
To: kvalo@codeaurora.org
Cc: linux-wireless@vger.kernel.org, Luca Coelho <luciano.coelho@intel.com>
Subject: [PATCH 00/19] iwlwifi: updates intended for v4.14 2017-08-05
Date: Sat,  5 Aug 2017 22:43:12 +0300	[thread overview]
Message-ID: <20170805194331.17426-1-luca@coelho.fi> (raw)

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

Hi,

Here's another set of patches for v4.14.  These are the changes:

* Some more code moved to a new directory;
* Fixes in LED handling;
* Some FW API updates;
* General fixes and cleanups here and there.

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

Please review.

Cheers,
Luca.


Bhumika Goyal (1):
  iwlwifi: mvm: add const to thermal_cooling_device_ops structure

Chaya Rachel Ivgi (2):
  iwlwifi: mvm: add debugfs to force CT-kill
  iwlwifi: mvm: set the default cTDP budget

Emmanuel Grumbach (3):
  iwlwifi: pcie: don't init a Tx queue with an SSN > size of the queue
  iwlwifi: pcie: free the TSO page when a Tx queue is unmapped on A000
    devices
  iwlwifi: mvm: fix the coex firmware API

Golan Ben-Ami (2):
  iwlwifi: dump smem configuration when firmware crashes
  iwlwifi: fix nmi triggering from host

Haim Dreyfuss (1):
  iwlwifi: mvm: support new beacon template command

Johannes Berg (2):
  iwlwifi: mvm: remove useless condition in LED code
  iwlwifi: mvm: use firmware LED command where applicable

Liad Kaufman (1):
  iwlwifi: fix a000 RF_ID define

Luca Coelho (2):
  iwlwifi: fix a few instances of misaligned kerneldoc parameters
  iwlwifi: remove references to unsupported HW

Matt Chen (1):
  iwlwifi: mvm: don't send CTDP commands via debugfs if not supported

Sharon Dvir (1):
  iwlwifi: change functions that can only return 0 to void

Shaul Triebitz (2):
  iwlwifi: mvm: move a000 device NVM retrieval to a common place
  iwlwifi: mvm: add station before allocating a queue

Tzipi Peres (1):
  iwlwifi: add support of FPGA fw

 drivers/net/wireless/intel/iwlwifi/Makefile        |   2 +-
 drivers/net/wireless/intel/iwlwifi/cfg/a000.c      |  14 ++
 drivers/net/wireless/intel/iwlwifi/dvm/commands.h  |   8 +-
 drivers/net/wireless/intel/iwlwifi/fw/api/coex.h   |  14 +-
 .../net/wireless/intel/iwlwifi/fw/api/commands.h   |   5 +
 drivers/net/wireless/intel/iwlwifi/fw/api/led.h    |  71 +++++++++
 drivers/net/wireless/intel/iwlwifi/fw/api/tx.h     |  19 ++-
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c        |  38 ++++-
 drivers/net/wireless/intel/iwlwifi/fw/error-dump.h |  30 ++++
 drivers/net/wireless/intel/iwlwifi/fw/file.h       |   1 +
 drivers/net/wireless/intel/iwlwifi/fw/nvm.c        | 162 +++++++++++++++++++++
 drivers/net/wireless/intel/iwlwifi/fw/runtime.h    |   2 +
 drivers/net/wireless/intel/iwlwifi/fw/smem.c       |   3 +
 drivers/net/wireless/intel/iwlwifi/iwl-config.h    |   1 +
 drivers/net/wireless/intel/iwlwifi/iwl-csr.h       |   4 +-
 drivers/net/wireless/intel/iwlwifi/iwl-drv.c       |  24 +--
 drivers/net/wireless/intel/iwlwifi/iwl-io.c        |  14 +-
 drivers/net/wireless/intel/iwlwifi/iwl-prph.h      |  13 +-
 drivers/net/wireless/intel/iwlwifi/mvm/coex.c      |   7 +-
 drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c   |  24 ++-
 drivers/net/wireless/intel/iwlwifi/mvm/fw-api.h    |   1 +
 drivers/net/wireless/intel/iwlwifi/mvm/fw.c        |  15 +-
 drivers/net/wireless/intel/iwlwifi/mvm/led.c       |  59 ++++++--
 drivers/net/wireless/intel/iwlwifi/mvm/mac-ctxt.c  |  47 ++++--
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h       |   6 +-
 drivers/net/wireless/intel/iwlwifi/mvm/nvm.c       |  91 ------------
 drivers/net/wireless/intel/iwlwifi/mvm/ops.c       |   1 +
 drivers/net/wireless/intel/iwlwifi/mvm/sta.c       | 108 ++++++++------
 drivers/net/wireless/intel/iwlwifi/mvm/tt.c        |   4 +-
 drivers/net/wireless/intel/iwlwifi/pcie/internal.h |   2 +
 drivers/net/wireless/intel/iwlwifi/pcie/trans.c    |  20 ++-
 drivers/net/wireless/intel/iwlwifi/pcie/tx-gen2.c  |  16 +-
 drivers/net/wireless/intel/iwlwifi/pcie/tx.c       |   4 +-
 33 files changed, 588 insertions(+), 242 deletions(-)
 create mode 100644 drivers/net/wireless/intel/iwlwifi/fw/api/led.h
 create mode 100644 drivers/net/wireless/intel/iwlwifi/fw/nvm.c

-- 
2.13.2

             reply	other threads:[~2017-08-05 19:43 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-05 19:43 Luca Coelho [this message]
2017-08-05 19:43 ` [PATCH 01/19] iwlwifi: mvm: remove useless condition in LED code Luca Coelho
2017-08-05 19:43 ` [PATCH 02/19] iwlwifi: mvm: use firmware LED command where applicable Luca Coelho
2017-08-05 19:43 ` [PATCH 03/19] iwlwifi: mvm: add const to thermal_cooling_device_ops structure Luca Coelho
2017-08-05 19:43 ` [PATCH 04/19] iwlwifi: mvm: add debugfs to force CT-kill Luca Coelho
2017-08-07 13:11   ` Kalle Valo
2017-08-07 13:25     ` Luca Coelho
2017-08-07 13:28       ` Kalle Valo
2017-08-09  6:43         ` [PATCH v2 4/19] " Luca Coelho
2017-08-09  7:36           ` Kalle Valo
2017-08-05 19:43 ` [PATCH 05/19] iwlwifi: change functions that can only return 0 to void Luca Coelho
2017-08-05 19:43 ` [PATCH 06/19] iwlwifi: fix a few instances of misaligned kerneldoc parameters Luca Coelho
2017-08-05 19:43 ` [PATCH 07/19] iwlwifi: add support of FPGA fw Luca Coelho
2017-08-05 19:43 ` [PATCH 08/19] iwlwifi: fix a000 RF_ID define Luca Coelho
2017-08-05 19:43 ` [PATCH 09/19] iwlwifi: dump smem configuration when firmware crashes Luca Coelho
2017-08-05 19:43 ` [PATCH 10/19] iwlwifi: mvm: move a000 device NVM retrieval to a common place Luca Coelho
2017-08-05 19:43 ` [PATCH 11/19] iwlwifi: mvm: set the default cTDP budget Luca Coelho
2017-08-05 19:43 ` [PATCH 12/19] iwlwifi: mvm: support new beacon template command Luca Coelho
2017-08-07 13:22   ` Kalle Valo
2017-08-09  6:46     ` [PATCH v2 " Luca Coelho
2017-08-09 18:20       ` [PATCH v3 " Luca Coelho
2017-08-05 19:43 ` [PATCH 13/19] iwlwifi: mvm: don't send CTDP commands via debugfs if not supported Luca Coelho
2017-08-05 19:43 ` [PATCH 14/19] iwlwifi: mvm: add station before allocating a queue Luca Coelho
2017-08-05 19:43 ` [PATCH 15/19] iwlwifi: pcie: don't init a Tx queue with an SSN > size of the queue Luca Coelho
2017-08-05 19:43 ` [PATCH 16/19] iwlwifi: fix nmi triggering from host Luca Coelho
2017-08-05 19:43 ` [PATCH 17/19] iwlwifi: remove references to unsupported HW Luca Coelho
2017-08-05 19:43 ` [PATCH 18/19] iwlwifi: pcie: free the TSO page when a Tx queue is unmapped on A000 devices Luca Coelho
2017-08-05 19:43 ` [PATCH 19/19] iwlwifi: mvm: fix the coex firmware API Luca Coelho

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170805194331.17426-1-luca@coelho.fi \
    --to=luca@coelho.fi \
    --cc=kvalo@codeaurora.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=luciano.coelho@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).