[GIT PULL] interconnect changes for 5.7
From: Georgi Djakov
Date:  Fri Mar 20 2020 - 07:10:26 EST
Hi Greg,
Here is a pull request with interconnect changes for the 5.7-rc1 merge
window. It contains just driver updates, and these are:
- Refactoring of the SDM845 driver, which is now improved to better
represent the hardware.
- New driver for SC7180 platforms.
- New driver for OSM L3 interconnect hardware found on SDM845/SC7180
platforms.
All of these have been in linux-next for more than two weeks without any
reported issues. Please pull into char-misc-next.
Thanks,
Georgi
The following changes since commit 11a48a5a18c63fd7621bb050228cebf13566e4d8:
  Linux 5.6-rc2 (2020-02-16 13:16:59 -0800)
are available in the Git repository at:
  https://git.linaro.org/people/georgi.djakov/linux.git tags/icc-5.7-rc1
for you to fetch changes up to 03c4e6186bbbe639b5277077c26786069e9e2b89:
  interconnect: qcom: Add OSM L3 support on SC7180 (2020-03-03 19:02:52 +0200)
----------------------------------------------------------------
interconnect changes for 5.7
Here is a pull request with interconnect changes for the 5.7-rc1 merge
window. It contains just driver updates, and these are:
- Refactoring of the SDM845 driver, which is now improved to better
represent the hardware.
- New driver for SC7180 platforms.
- New driver for OSM L3 interconnect hardware found on SDM845/SC7180
platforms.
Signed-off-by: Georgi Djakov <georgi.djakov@xxxxxxxxxx>
----------------------------------------------------------------
David Dai (5):
      dt-bindings: interconnect: Convert qcom,sdm845 to DT schema
      dt-bindings: interconnect: Add YAML schemas for QCOM bcm-voter
      dt-bindings: interconnect: Update Qualcomm SDM845 DT bindings
      interconnect: qcom: Consolidate interconnect RPMh support
      interconnect: qcom: sdm845: Split qnodes into their respective NoCs
Odelu Kukatla (2):
      dt-bindings: interconnect: Add Qualcomm SC7180 DT bindings
      interconnect: qcom: Add SC7180 interconnect provider driver
Sibi Sankar (5):
      interconnect: qcom: Allow icc node to be used across icc providers
      dt-bindings: interconnect: Add OSM L3 DT bindings
      interconnect: qcom: Add OSM L3 interconnect provider support
      dt-bindings: interconnect: Add OSM L3 DT binding on SC7180
      interconnect: qcom: Add OSM L3 support on SC7180
 .../devicetree/bindings/interconnect/qcom,bcm-voter.yaml       |   45 +
 .../devicetree/bindings/interconnect/qcom,osm-l3.yaml          |   62 +
 .../devicetree/bindings/interconnect/qcom,sc7180.yaml          |   85 +
 Documentation/devicetree/bindings/interconnect/qcom,sdm845.txt |   24 -
 .../devicetree/bindings/interconnect/qcom,sdm845.yaml          |   74 +
 drivers/interconnect/qcom/Kconfig                              |   25 +
 drivers/interconnect/qcom/Makefile                             |    8 +
 drivers/interconnect/qcom/bcm-voter.c                          |  366 +++
 drivers/interconnect/qcom/bcm-voter.h                          |   27 +
 drivers/interconnect/qcom/icc-rpmh.c                           |  150 +
 drivers/interconnect/qcom/icc-rpmh.h                           |  149 +
 drivers/interconnect/qcom/osm-l3.c                             |  276 ++
 drivers/interconnect/qcom/sc7180.c                             |  641 +++++
 drivers/interconnect/qcom/sc7180.h                             |  151 ++
 drivers/interconnect/qcom/sdm845.c                             | 1055 +++-----
 drivers/interconnect/qcom/sdm845.h                             |  142 +
 include/dt-bindings/interconnect/qcom,osm-l3.h                 |   12 +
 include/dt-bindings/interconnect/qcom,sc7180.h                 |  161 ++
 include/dt-bindings/interconnect/qcom,sdm845.h                 |  263 +-
 19 files changed, 2875 insertions(+), 841 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/interconnect/qcom,bcm-voter.yaml
 create mode 100644 Documentation/devicetree/bindings/interconnect/qcom,osm-l3.yaml
 create mode 100644 Documentation/devicetree/bindings/interconnect/qcom,sc7180.yaml
 delete mode 100644 Documentation/devicetree/bindings/interconnect/qcom,sdm845.txt
 create mode 100644 Documentation/devicetree/bindings/interconnect/qcom,sdm845.yaml
 create mode 100644 drivers/interconnect/qcom/bcm-voter.c
 create mode 100644 drivers/interconnect/qcom/bcm-voter.h
 create mode 100644 drivers/interconnect/qcom/icc-rpmh.c
 create mode 100644 drivers/interconnect/qcom/icc-rpmh.h
 create mode 100644 drivers/interconnect/qcom/osm-l3.c
 create mode 100644 drivers/interconnect/qcom/sc7180.c
 create mode 100644 drivers/interconnect/qcom/sc7180.h
 create mode 100644 drivers/interconnect/qcom/sdm845.h
 create mode 100644 include/dt-bindings/interconnect/qcom,osm-l3.h
 create mode 100644 include/dt-bindings/interconnect/qcom,sc7180.h