mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Alexander Shishkin <alexander.shishkin@linux.intel.com>
To: Greg KH <greg@kroah.com>
Cc: Mathieu Poirier <mathieu.poirier@linaro.org>,
	Chunyan Zhang <zhang.chunyan@linaro.org>,
	linux-kernel@vger.kernel.org,
	Alexander Shishkin <alexander.shishkin@linux.intel.com>
Subject: [GIT PULL 00/10] stm class/intel_th: Updates for v4.17
Date: Thu, 29 Mar 2018 14:14:08 +0300	[thread overview]
Message-ID: <20180329111418.9416-1-alexander.shishkin@linux.intel.com> (raw)

Hi Greg,

Here are the patches I have for the next merge window. As usual, these
are aiaiai-clean (cppcheck/sparse/smatch/coccinelle). Individual patches
follow, for your convenience. Apologies for the late request.

One big thing is the addition of an ACPI device support to the Trace Hub
driver. Other than that, these are small fixes and SPDX stuff.

Please consider pulling or applying. Thanks!

The following changes since commit 7928b2cbe55b2a410a0f5c1f154610059c57b1b2:

  Linux 4.16-rc1 (2018-02-11 15:04:29 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git tags/stm-intel_th-for-greg-20180329

for you to fetch changes up to 72ef0f24d587d38f235334aef69afe611bba0d16:

  hwtracing: Add HW tracing support menu (2018-03-29 13:38:10 +0300)

----------------------------------------------------------------
stm class/intel_th: Updates for 4.17

These are:
  * Mass conversion to GPL-2 SPDX header
  * Moved "hwtracing" to now its own submenu, to uncrowd the parent menu a bit
  * Added MAINTAINERS entry for drivers/hwtracing
  * Somewhat small Trace Hub fixes
  * Added ACPI glue layer for the Trace Hub
  * Added more module parameters to dummy_stm for better test coverage

----------------------------------------------------------------
Alexander Shishkin (9):
      MAINTAINERS: Bestow upon myself the care for drivers/hwtracing
      stm class: Add SPDX GPL-2.0 header to replace GPLv2 boilerplate
      stm class: Make dummy's master/channel ranges configurable
      intel_th: Add SPDX GPL-2.0 header to replace GPLv2 boilerplate
      intel_th: Use correct method of finding hub
      intel_th: Don't touch switch routing in host mode
      intel_th: Pick up irq number from resources
      intel_th: Allow forcing host mode through drvdata
      intel_th: Add ACPI glue layer

Randy Dunlap (1):
      hwtracing: Add HW tracing support menu

 MAINTAINERS                           |  5 +++
 drivers/Kconfig                       |  4 +-
 drivers/hwtracing/Kconfig             |  7 ++++
 drivers/hwtracing/intel_th/Kconfig    | 12 ++++++
 drivers/hwtracing/intel_th/Makefile   |  3 ++
 drivers/hwtracing/intel_th/acpi.c     | 79 +++++++++++++++++++++++++++++++++++
 drivers/hwtracing/intel_th/core.c     | 31 ++++++++------
 drivers/hwtracing/intel_th/debug.c    | 10 +----
 drivers/hwtracing/intel_th/debug.h    | 10 +----
 drivers/hwtracing/intel_th/gth.c      | 10 +----
 drivers/hwtracing/intel_th/gth.h      | 10 +----
 drivers/hwtracing/intel_th/intel_th.h | 14 ++-----
 drivers/hwtracing/intel_th/msu.c      | 10 +----
 drivers/hwtracing/intel_th/msu.h      | 10 +----
 drivers/hwtracing/intel_th/pci.c      | 10 +----
 drivers/hwtracing/intel_th/pti.c      | 10 +----
 drivers/hwtracing/intel_th/pti.h      | 10 +----
 drivers/hwtracing/intel_th/sth.c      | 10 +----
 drivers/hwtracing/intel_th/sth.h      | 10 +----
 drivers/hwtracing/stm/console.c       | 10 +----
 drivers/hwtracing/stm/core.c          | 10 +----
 drivers/hwtracing/stm/dummy_stm.c     | 34 +++++++++------
 drivers/hwtracing/stm/heartbeat.c     | 10 +----
 drivers/hwtracing/stm/policy.c        | 10 +----
 drivers/hwtracing/stm/stm.h           | 10 +----
 include/linux/stm.h                   | 10 +----
 include/uapi/linux/stm.h              | 13 ++----
 27 files changed, 172 insertions(+), 200 deletions(-)
 create mode 100644 drivers/hwtracing/Kconfig
 create mode 100644 drivers/hwtracing/intel_th/acpi.c

-- 
2.16.2

             reply	other threads:[~2018-03-29 11:14 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-29 11:14 Alexander Shishkin [this message]
2018-03-29 11:14 ` [GIT PULL 01/10] MAINTAINERS: Bestow upon myself the care for drivers/hwtracing Alexander Shishkin
2018-03-29 11:14 ` [GIT PULL 02/10] stm class: Add SPDX GPL-2.0 header to replace GPLv2 boilerplate Alexander Shishkin
2018-03-29 11:14 ` [GIT PULL 03/10] stm class: Make dummy's master/channel ranges configurable Alexander Shishkin
2018-03-29 11:14 ` [GIT PULL 04/10] intel_th: Add SPDX GPL-2.0 header to replace GPLv2 boilerplate Alexander Shishkin
2018-03-29 11:14 ` [GIT PULL 05/10] intel_th: Use correct method of finding hub Alexander Shishkin
2018-03-29 11:14 ` [GIT PULL 06/10] intel_th: Don't touch switch routing in host mode Alexander Shishkin
2018-03-29 11:14 ` [GIT PULL 07/10] intel_th: Pick up irq number from resources Alexander Shishkin
2018-03-29 11:14 ` [GIT PULL 08/10] intel_th: Allow forcing host mode through drvdata Alexander Shishkin
2018-03-29 11:14 ` [GIT PULL 09/10] intel_th: Add ACPI glue layer Alexander Shishkin
2018-03-29 11:14 ` [GIT PULL 10/10] hwtracing: Add HW tracing support menu Alexander Shishkin
2018-03-29 16:40 ` [GIT PULL 00/10] stm class/intel_th: Updates for v4.17 Greg KH

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=20180329111418.9416-1-alexander.shishkin@linux.intel.com \
    --to=alexander.shishkin@linux.intel.com \
    --cc=greg@kroah.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mathieu.poirier@linaro.org \
    --cc=zhang.chunyan@linaro.org \
    /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

all inboxes | Powered by JetHome®