mbox series

[GIT,PULL] interconnect changes for 5.15

Message ID 20210823153222.9638-1-djakov@kernel.org (mailing list archive)
State Not Applicable, archived
Headers show
Series [GIT,PULL] interconnect changes for 5.15 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git tags/icc-5.15-rc1

Message

Georgi Djakov Aug. 23, 2021, 3:32 p.m. UTC
Hello Greg,

This is the pull request with the interconnect changes for the 5.15-rc1
merge window containing framework and driver changes. Details are available
in the signed tag.

Patches have been in linux-next for two weeks and without any reported
issues. Please pull into char-misc-next.

Thanks,
Georgi

The following changes since commit e73f0f0ee7541171d89f2e2491130c7771ba58d3:

  Linux 5.14-rc1 (2021-07-11 15:07:40 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git tags/icc-5.15-rc1

for you to fetch changes up to 8bf5d31c4f06d806ae24a3ba998a2f4eaccfa7c1:

  interconnect: qcom: osm-l3: Use driver-specific naming (2021-08-09 20:10:19 +0300)

----------------------------------------------------------------
interconnect changes for 5.15

Here are changes for the 5.15-rc1 merge window consisting of interconnect
core and driver updates.

Framework change:
- Add sanity check to detect if node is already added to provider.

Driver changes:
- RPMh drivers probe function consolidation
- Add driver for SC8180x platforms
- Add support for SC8180x OSM L3
- Use driver-specific naming in OSM L3

Signed-off-by: Georgi Djakov <djakov@kernel.org>

----------------------------------------------------------------
Bjorn Andersson (4):
      interconnect: Sanity check that node isn't already on list
      dt-bindings: interconnect: Add SC8180x to OSM L3 DT binding
      interconnect: qcom: osm-l3: Add sc8180x support
      interconnect: qcom: osm-l3: Use driver-specific naming

Georgi Djakov (2):
      dt-bindings: interconnect: Add Qualcomm SC8180x DT bindings
      interconnect: qcom: Add SC8180x providers

Mike Tipton (1):
      interconnect: qcom: icc-rpmh: Consolidate probe functions

 Documentation/devicetree/bindings/interconnect/qcom,osm-l3.yaml |   1 +
 Documentation/devicetree/bindings/interconnect/qcom,rpmh.yaml   |  11 +
 drivers/interconnect/core.c                                     |   3 +
 drivers/interconnect/qcom/Kconfig                               |   9 +
 drivers/interconnect/qcom/Makefile                              |   2 +
 drivers/interconnect/qcom/icc-rpmh.c                            |  93 ++
 drivers/interconnect/qcom/icc-rpmh.h                            |   2 +
 drivers/interconnect/qcom/osm-l3.c                              |  60 +-
 drivers/interconnect/qcom/sc7180.c                              |  96 +-
 drivers/interconnect/qcom/sc7280.c                              |  96 +-
 drivers/interconnect/qcom/sc8180x.c                             | 626 ++++++++
 drivers/interconnect/qcom/sc8180x.h                             | 174 ++
 drivers/interconnect/qcom/sdm845.c                              |  99 +-
 drivers/interconnect/qcom/sdx55.c                               |  96 +-
 drivers/interconnect/qcom/sm8150.c                              |  96 +-
 drivers/interconnect/qcom/sm8250.c                              |  96 +-
 drivers/interconnect/qcom/sm8350.c                              |  97 +-
 include/dt-bindings/interconnect/qcom,sc8180x.h                 | 185 +++
 18 files changed, 1159 insertions(+), 683 deletions(-)
 create mode 100644 drivers/interconnect/qcom/sc8180x.c
 create mode 100644 drivers/interconnect/qcom/sc8180x.h
 create mode 100644 include/dt-bindings/interconnect/qcom,sc8180x.h

Comments

Greg Kroah-Hartman Aug. 24, 2021, 1:34 p.m. UTC | #1
On Mon, Aug 23, 2021 at 06:32:22PM +0300, Georgi Djakov wrote:
> Hello Greg,
> 
> This is the pull request with the interconnect changes for the 5.15-rc1
> merge window containing framework and driver changes. Details are available
> in the signed tag.
> 
> Patches have been in linux-next for two weeks and without any reported
> issues. Please pull into char-misc-next.
> 
> Thanks,
> Georgi
> 
> The following changes since commit e73f0f0ee7541171d89f2e2491130c7771ba58d3:
> 
>   Linux 5.14-rc1 (2021-07-11 15:07:40 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git tags/icc-5.15-rc1

Pulled and pushed out, thanks.

greg k-h