Linux Power Management development
 help / color / mirror / Atom feed
From: Georgi Djakov <georgi.djakov@linaro.org>
To: gregkh@linuxfoundation.org
Cc: linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [GIT PULL 00/12] interconnect changes for 5.6
Date: Wed, 22 Jan 2020 11:07:25 +0200	[thread overview]
Message-ID: <ec627a0c-3f84-2b7b-e42b-36cb46ceb594@linaro.org> (raw)
In-Reply-To: <20200117095816.23575-1-georgi.djakov@linaro.org>

Hi Greg,

On 1/17/20 11:58, Georgi Djakov wrote:
> Hi Greg,
> 
> Here are the interconnect patches for the 5.6-rc1 merge window.
> 
> - New core helper functions for some common functionalities in drivers.
> - Improvements in the information exposed via debugfs.
> - Basic tracepoints support.
> - New interconnect driver for msm8916 platforms.
> - Misc fixes.
> 
> All patches have been for a while in linux-next without reported issues.
> Please consider queuing them into char-misc-next.
> 
> The same is also available via a pull request with a signed tag below.
> 
> Thanks,
> Georgi

A gentle ping to check whether this email got lost or you require any
changes?

Thanks,
Georgi

> 
> The following changes since commit d1eef1c619749b2a57e514a3fa67d9a516ffa919:
> 
>   Linux 5.5-rc2 (2019-12-15 15:16:08 -0800)
> 
> are available in the Git repository at:
> 
>   https://git.linaro.org/people/georgi.djakov/linux.git tags/icc-5.6-rc1
> 
> for you to fetch changes up to 30c8fa3ec61a46da80698e1f8ab95df4d42bf374:
> 
>   interconnect: qcom: Add MSM8916 interconnect provider driver (2020-01-07 09:30:09 +0200)
> 
> ----------------------------------------------------------------
> interconnect patches for 5.6
> 
> Here are the interconnect patches for the 5.6-rc1 merge window.
> 
> - New core helper functions for some common functionalities in drivers.
> - Improvements in the information exposed via debugfs.
> - Basic tracepoints support.
> - New interconnect driver for msm8916 platforms.
> - Misc fixes.
> 
> Signed-off-by: Georgi Djakov <georgi.djakov@linaro.org>
> 
> ----------------------------------------------------------------
> Georgi Djakov (11):
>   interconnect: Add a common helper for removing all nodes
>   interconnect: qcom: Use the new common helper for node removal
>   interconnect: Move internal structs into a separate file
>   interconnect: Add a name to struct icc_path
>   interconnect: Add basic tracepoints
>   interconnect: Add a common standard aggregate function
>   interconnect: qcom: Use the standard aggregate function
>   interconnect: Print the tag in the debugfs summary
>   interconnect: Check for valid path in icc_set_bw()
>   dt-bindings: interconnect: Add Qualcomm MSM8916 DT bindings
>   interconnect: qcom: Add MSM8916 interconnect provider driver
> 
> Leonard Crestez (1):
>   interconnect: Add interconnect_graph file to debugfs
> 
>  .../bindings/interconnect/qcom,msm8916.yaml   |  77 +++
>  Documentation/driver-api/interconnect.rst     |  22 +
>  drivers/interconnect/Makefile                 |   1 +
>  drivers/interconnect/core.c                   | 168 ++++--
>  drivers/interconnect/internal.h               |  42 ++
>  drivers/interconnect/qcom/Kconfig             |   9 +
>  drivers/interconnect/qcom/Makefile            |   2 +
>  drivers/interconnect/qcom/msm8916.c           | 554 ++++++++++++++++++
>  drivers/interconnect/qcom/msm8974.c           |  32 +-
>  drivers/interconnect/qcom/qcs404.c            |  32 +-
>  drivers/interconnect/qcom/sdm845.c            |  16 +-
>  drivers/interconnect/trace.h                  |  88 +++
>  .../dt-bindings/interconnect/qcom,msm8916.h   | 100 ++++
>  include/linux/interconnect-provider.h         |  14 +
>  14 files changed, 1057 insertions(+), 100 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/interconnect/qcom,msm8916.yaml
>  create mode 100644 drivers/interconnect/internal.h
>  create mode 100644 drivers/interconnect/qcom/msm8916.c
>  create mode 100644 drivers/interconnect/trace.h
>  create mode 100644 include/dt-bindings/interconnect/qcom,msm8916.h
> 

  parent reply	other threads:[~2020-01-22  9:07 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-17  9:58 [GIT PULL 00/12] interconnect changes for 5.6 Georgi Djakov
2020-01-17  9:58 ` [PATCH 01/12] interconnect: Add a common helper for removing all nodes Georgi Djakov
2020-01-17  9:58 ` [PATCH 02/12] interconnect: qcom: Use the new common helper for node removal Georgi Djakov
2020-01-17  9:58 ` [PATCH 03/12] interconnect: Move internal structs into a separate file Georgi Djakov
2020-01-17  9:58 ` [PATCH 04/12] interconnect: Add a name to struct icc_path Georgi Djakov
2020-01-17  9:58 ` [PATCH 05/12] interconnect: Add basic tracepoints Georgi Djakov
2020-01-17  9:58 ` [PATCH 06/12] interconnect: Add a common standard aggregate function Georgi Djakov
2020-01-17  9:58 ` [PATCH 07/12] interconnect: qcom: Use the " Georgi Djakov
2020-01-17  9:58 ` [PATCH 08/12] interconnect: Add interconnect_graph file to debugfs Georgi Djakov
2020-01-17  9:58 ` [PATCH 09/12] interconnect: Print the tag in the debugfs summary Georgi Djakov
2020-01-17  9:58 ` [PATCH 10/12] interconnect: Check for valid path in icc_set_bw() Georgi Djakov
2020-01-17  9:58 ` [PATCH 11/12] dt-bindings: interconnect: Add Qualcomm MSM8916 DT bindings Georgi Djakov
2020-01-17  9:58 ` [PATCH 12/12] interconnect: qcom: Add MSM8916 interconnect provider driver Georgi Djakov
2020-01-22  9:05 ` [GIT PULL 00/12] interconnect changes for 5.6 Greg KH
2020-01-22  9:15   ` Georgi Djakov
2020-01-22  9:07 ` Georgi Djakov [this message]
2020-01-22  9:15   ` 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=ec627a0c-3f84-2b7b-e42b-36cb46ceb594@linaro.org \
    --to=georgi.djakov@linaro.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.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