Re: [GIT PULL] interconnect changes for 7.3
Georgi Djakov <[email protected]>
| Newsgroups | org.kernel.vger.linux-pm,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
On 8/10/26 5:50 PM, Georgi Djakov wrote: > Hello Greg, > > This is the pull request with interconnect changes for the v7.3-rc1 > merge window. As always, the short summary is in the signed tag. > > All patches have been in linux-next for more than two weeks. There > are no reported issues. Please pull into char-misc-next when > possible. > Hello Greg, Just checking whether this is still in your mail queue. Please let me know if anything is needed from my side. Thanks, Georgi > The following changes since commit dc59e4fea9d83f03bad6bddf3fa2e52491777482: > > Linux 7.2-rc1 (2026-06-28 12:01:31 -0700) > > are available in the Git repository at: > > git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git tags/icc-7.3-rc1 > > for you to fetch changes up to 9621c81fd2eb7db4b647814b7b6e537744831e60: > > Merge branch 'icc-misc' into icc-next (2026-07-22 13:51:41 +0300) > > ---------------------------------------------------------------- > This pull request contains the following interconnect updates for > the 7.3-rc1 merge window: > > - New driver for Maili SoC > - Add support for QoS on the SC8280XP SoC > - Add support for QoS on the x1e80100 SoC > - Add EPSS L3 scaling support for Shikra SoC > - Add COMPILE_TEST support for some platforms > - Misc tiny improvements and fixes > > Signed-off-by: Georgi Djakov <[email protected]> > > ---------------------------------------------------------------- > Georgi Djakov (5): > Merge branch 'icc-sc8280xp' into icc-next > Merge branch 'icc-x1e80100' into icc-next > Merge branch 'icc-shikra' into icc-next > Merge branch 'icc-maili' into icc-next > Merge branch 'icc-misc' into icc-next > > Kuan-Wei Chiu (1): > interconnect: Fix use after free in icc_get() and of_icc_get_by_index() > > Li Jun (1): > interconnect: debugfs-client: add NULL check for platform_device_alloc > > Raviteja Laggyshetty (6): > dt-bindings: interconnect: qcom,x1e80100-rpmh: add clocks property to enable QoS > interconnect: qcom: x1e80100: enable QoS configuration > dt-bindings: interconnect: qcom,osm-l3: Add EPSS L3 DT binding for Qualcomm Shikra SoC > interconnect: qcom: Add EPSS L3 scaling support for Shikra SoC > dt-bindings: interconnect: qcom: document the RPMh Network-On-Chip interconnect in Maili SoC > interconnect: qcom: add Maili interconnect provider driver > > Rosen Penev (2): > interconnect: qcom: add COMPILE_TEST > interconnect: qcom: simplify allocation > > Xilin Wu (2): > dt-bindings: interconnect: qcom,sc8280xp-rpmh: Add reg and clocks for QoS > interconnect: qcom: sc8280xp: Enable QoS configuration > > .../devicetree/bindings/interconnect/qcom,maili-rpmh.yaml | 127 + > .../devicetree/bindings/interconnect/qcom,osm-l3.yaml | 2 + > .../devicetree/bindings/interconnect/qcom,sc8280xp-rpmh.yaml | 99 +- > .../devicetree/bindings/interconnect/qcom,x1e80100-rpmh.yaml | 72 + > drivers/interconnect/core.c | 7 +- > drivers/interconnect/debugfs-client.c | 2 + > drivers/interconnect/qcom/Kconfig | 12 +- > drivers/interconnect/qcom/Makefile | 2 + > drivers/interconnect/qcom/icc-rpm.c | 7 +- > drivers/interconnect/qcom/icc-rpm.h | 8 +- > drivers/interconnect/qcom/maili.c | 2091 ++++++++ > drivers/interconnect/qcom/osm-l3.c | 16 +- > drivers/interconnect/qcom/sc8280xp.c | 356 ++ > drivers/interconnect/qcom/x1e80100.c | 485 ++ > include/dt-bindings/interconnect/qcom,maili-rpmh.h | 171 + > 15 files changed, 3442 insertions(+), 15 deletions(-) > create mode 100644 Documentation/devicetree/bindings/interconnect/qcom,maili-rpmh.yaml > create mode 100644 drivers/interconnect/qcom/maili.c > create mode 100644 include/dt-bindings/interconnect/qcom,maili-rpmh.h >