mbox

[GIT,PULL,00/12] interconnect changes for 5.6

Message ID 20200117095816.23575-1-georgi.djakov@linaro.org (mailing list archive)
State Not Applicable, archived
Headers show

Pull-request

https://git.linaro.org/people/georgi.djakov/linux.git tags/icc-5.6-rc1

Message

Georgi Djakov Jan. 17, 2020, 9:58 a.m. UTC
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

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

Comments

Greg Kroah-Hartman Jan. 22, 2020, 9:05 a.m. UTC | #1
On Fri, Jan 17, 2020 at 11:58:04AM +0200, 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
> 
> 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

Pulled and pushed out, thanks.

greg k-h
Georgi Djakov Jan. 22, 2020, 9:07 a.m. UTC | #2
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
>
Greg Kroah-Hartman Jan. 22, 2020, 9:15 a.m. UTC | #3
On Wed, Jan 22, 2020 at 11:07:25AM +0200, Georgi Djakov wrote:
> 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?

I think our emails crossed, I had just pulled this :)
Georgi Djakov Jan. 22, 2020, 9:15 a.m. UTC | #4
On 1/22/20 11:05, Greg KH wrote:
> On Fri, Jan 17, 2020 at 11:58:04AM +0200, 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
>>
>> 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
> 
> Pulled and pushed out, thanks.
> 

Thanks! Just sent you a ping email a few minutes ago. Please ignore it.
Georgi