mbox series

[GIT,PULL] interconnect changes for 5.13

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

Pull-request

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

Message

Georgi Djakov April 15, 2021, 8:09 a.m. UTC
Hello Greg,

This is the pull request with the interconnect changes for the 5.13-rc1
merge window. These include two new drivers.

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

Thanks,
Georgi

The following changes since commit a38fd8748464831584a19438cbb3082b5a2dab15:

  Linux 5.12-rc2 (2021-03-05 17:33:41 -0800)

are available in the Git repository at:

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

for you to fetch changes up to c1de07884f2bafa11ad3780cf08b234c88c2cc9d:

  Merge branch 'icc-sm8350' into icc-next (2021-04-02 13:12:37 +0300)

----------------------------------------------------------------
interconnect changes for 5.13

These are the interconnect changes for the 5.13-rc1 merge window
with the highlights being drivers for two new platforms.

Driver changes:
- New driver for SM8350 platforms.
- New driver for SDM660 platforms.

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

----------------------------------------------------------------
AngeloGioacchino Del Regno (2):
      dt-bindings: interconnect: Add bindings for Qualcomm SDM660 NoC
      interconnect: qcom: Add SDM660 interconnect provider driver

Benjamin Li (1):
      interconnect: qcom: icc-rpm: record slave RPM id in error log

Georgi Djakov (5):
      interconnect: qcom: sdm660: Fix kerneldoc warning
      interconnect: qcom: sm8350: Use the correct ids
      interconnect: qcom: sm8350: Add missing link between nodes
      Merge branch 'icc-sdm660' into icc-next
      Merge branch 'icc-sm8350' into icc-next

Vinod Koul (3):
      dt-bindings: interconnect: Add Qualcomm SM8350 DT bindings
      interconnect: qcom: Add SM8350 interconnect provider driver
      MAINTAINERS: icc: add interconnect tree

 Documentation/devicetree/bindings/interconnect/qcom,rpmh.yaml   |  10 +
 Documentation/devicetree/bindings/interconnect/qcom,sdm660.yaml | 147 ++
 MAINTAINERS                                                     |   1 +
 drivers/interconnect/qcom/Kconfig                               |  18 +
 drivers/interconnect/qcom/Makefile                              |   4 +
 drivers/interconnect/qcom/icc-rpm.c                             |   4 +-
 drivers/interconnect/qcom/sdm660.c                              | 923 ++++++++
 drivers/interconnect/qcom/sm8350.c                              | 633 +++++
 drivers/interconnect/qcom/sm8350.h                              | 168 ++
 include/dt-bindings/interconnect/qcom,sdm660.h                  | 116 +
 include/dt-bindings/interconnect/qcom,sm8350.h                  | 172 ++
 11 files changed, 2194 insertions(+), 2 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/interconnect/qcom,sdm660.yaml
 create mode 100644 drivers/interconnect/qcom/sdm660.c
 create mode 100644 drivers/interconnect/qcom/sm8350.c
 create mode 100644 drivers/interconnect/qcom/sm8350.h
 create mode 100644 include/dt-bindings/interconnect/qcom,sdm660.h
 create mode 100644 include/dt-bindings/interconnect/qcom,sm8350.h

Comments

Greg Kroah-Hartman April 15, 2021, 9:07 a.m. UTC | #1
On Thu, Apr 15, 2021 at 11:09:48AM +0300, Georgi Djakov wrote:
> Hello Greg,
> 
> This is the pull request with the interconnect changes for the 5.13-rc1
> merge window. These include two new drivers.
> 
> Patches have been in linux-next without any reported issues. Please pull
> into char-misc-next.
> 
> Thanks,
> Georgi
> 
> The following changes since commit a38fd8748464831584a19438cbb3082b5a2dab15:
> 
>   Linux 5.12-rc2 (2021-03-05 17:33:41 -0800)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git tags/icc-5.13-rc1

Pulled and pushed out, thanks.

greg k-h