mbox series

[GIT,PULL] interconnect changes for 5.12

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

Pull-request

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

Message

Georgi Djakov Feb. 5, 2021, 9:52 a.m. UTC
Hello Greg,

This is the pull request with the interconnect changes for the 5.12-rc1
merge window. These include two new drivers some driver consolidation.

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

Thanks,
Georgi

The following changes since commit 7c53f6b671f4aba70ff15e1b05148b10d58c2837:

  Linux 5.11-rc3 (2021-01-10 14:34:50 -0800)

are available in the Git repository at:

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

for you to fetch changes up to 6715ea06ced45c8910c878877722ccf502301499:

  Merge branch 'icc-sdx55' into icc-next (2021-02-01 14:26:57 +0200)

----------------------------------------------------------------
interconnect changes for 5.12

Here are the interconnect changes for the 5.12-rc1 merge window
consisting of driver updates.

Driver changes:
- Refactoring and consolidation of drivers.
- New driver for MSM8939 platforms.
- New driver for SDX55 platforms.

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

----------------------------------------------------------------
Georgi Djakov (2):
      Merge branch 'icc-msm8939' into icc-next
      Merge branch 'icc-sdx55' into icc-next

Jun Nie (5):
      interconnect: qcom: Consolidate interconnect RPM support
      interconnect: qcom: qcs404: use shared code
      dt-bindings: interconnect: single yaml file for RPM interconnect drivers
      dt-bindings: interconnect: Add Qualcomm MSM8939 DT bindings
      interconnect: qcom: Add MSM8939 interconnect provider driver

Manivannan Sadhasivam (2):
      dt-bindings: interconnect: Add Qualcomm SDX55 DT bindings
      interconnect: qcom: Add SDX55 interconnect provider driver

 Documentation/devicetree/bindings/interconnect/qcom,qcs404.yaml |  77 --
 .../bindings/interconnect/{qcom,msm8916.yaml => qcom,rpm.yaml}  |  22 +-
 Documentation/devicetree/bindings/interconnect/qcom,rpmh.yaml   |   4 +
 drivers/interconnect/qcom/Kconfig                               |  18 +
 drivers/interconnect/qcom/Makefile                              |   6 +-
 drivers/interconnect/qcom/icc-rpm.c                             | 191 ++++
 drivers/interconnect/qcom/icc-rpm.h                             |  73 ++
 drivers/interconnect/qcom/msm8916.c                             | 241 +----
 drivers/interconnect/qcom/msm8939.c                             | 355 +++++++
 drivers/interconnect/qcom/qcs404.c                              | 242 +----
 drivers/interconnect/qcom/sdx55.c                               | 356 ++++++++
 drivers/interconnect/qcom/sdx55.h                               |  70 ++
 include/dt-bindings/interconnect/qcom,msm8939.h                 | 105 +++
 include/dt-bindings/interconnect/qcom,sdx55.h                   |  76 ++
 14 files changed, 1286 insertions(+), 550 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/interconnect/qcom,qcs404.yaml
 rename Documentation/devicetree/bindings/interconnect/{qcom,msm8916.yaml => qcom,rpm.yaml} (77%)
 create mode 100644 drivers/interconnect/qcom/icc-rpm.c
 create mode 100644 drivers/interconnect/qcom/icc-rpm.h
 create mode 100644 drivers/interconnect/qcom/msm8939.c
 create mode 100644 drivers/interconnect/qcom/sdx55.c
 create mode 100644 drivers/interconnect/qcom/sdx55.h
 create mode 100644 include/dt-bindings/interconnect/qcom,msm8939.h
 create mode 100644 include/dt-bindings/interconnect/qcom,sdx55.h

Comments

Greg Kroah-Hartman Feb. 5, 2021, 10:11 a.m. UTC | #1
On Fri, Feb 05, 2021 at 11:52:46AM +0200, Georgi Djakov wrote:
> Hello Greg,
> 
> This is the pull request with the interconnect changes for the 5.12-rc1
> merge window. These include two new drivers some driver consolidation.
> 
> Patches have been in linux-next without any reported issues. Please pull
> into char-misc-next.
> 
> Thanks,
> Georgi
> 
> The following changes since commit 7c53f6b671f4aba70ff15e1b05148b10d58c2837:
> 
>   Linux 5.11-rc3 (2021-01-10 14:34:50 -0800)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git tags/icc-5.12-rc1

Pulled and pushed out, thanks.

greg k-h