linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] interconnect changes for 6.17
@ 2025-07-24  5:57 Georgi Djakov
  2025-07-24  6:04 ` Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: Georgi Djakov @ 2025-07-24  5:57 UTC (permalink / raw)
  To: gregkh; +Cc: linux-pm, linux-kernel, djakov

Hello Greg,

This is the pull request with interconnect changes for the v6.17-rc1 merge
window. This time it contains only driver changes. As always, the summary
is in the signed tag.

All patches have been in linux-next during the last few days. There are
currently no reported issues. Please pull into char-misc-next when possible.

Thanks,
Georgi


The following changes since commit 19272b37aa4f83ca52bdf9c16d5d81bdd1354494:

  Linux 6.16-rc1 (2025-06-08 13:44:43 -0700)

are available in the Git repository at:

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

for you to fetch changes up to ca652cf0c2612add5d3c9283bbc742dabc704a77:

  Merge branch 'icc-milos' into icc-next (2025-07-22 14:41:12 +0300)

----------------------------------------------------------------
interconnect changes for 6.17

This pull request contains the interconnect changes for the 6.17-rc1
merge window. It contains only driver changes.

Driver changes:
- SC8180X and SC8280XP driver fixes
- Add new driver for the Qualcomm Milos SoC
- Add Support for EPSS L3 hardware in QCS8300 SoC
- DT bindings fixes and other cleanups

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

----------------------------------------------------------------
Dmitry Baryshkov (2):
      interconnect: qcom: sc8280xp: specify num_links for qnm_a1noc_cfg
      interconnect: qcom: sc8180x: specify num_nodes

Georgi Djakov (1):
      Merge branch 'icc-milos' into icc-next

Konrad Dybcio (2):
      interconnect: qcom: qcs615: Drop IP0 interconnects
      dt-bindings: interconnect: qcom,msm8998-bwmon: Allow 'nonposted-mmio'

Luca Weiss (3):
      dt-bindings: interconnect: qcom: Remove double colon from description
      dt-bindings: interconnect: document the RPMh Network-On-Chip Interconnect in Qualcomm Milos SoC
      interconnect: qcom: Add Milos interconnect provider driver

Raviteja Laggyshetty (1):
      dt-bindings: interconnect: Add EPSS L3 compatible for QCS8300 SoC

 .../devicetree/bindings/interconnect/qcom,milos-rpmh.yaml      |  136 +
 .../devicetree/bindings/interconnect/qcom,msm8998-bwmon.yaml   |    2 +
 .../devicetree/bindings/interconnect/qcom,osm-l3.yaml          |    5 +
 .../devicetree/bindings/interconnect/qcom,sa8775p-rpmh.yaml    |    2 +-
 .../devicetree/bindings/interconnect/qcom,sar2130p-rpmh.yaml   |    2 +-
 .../devicetree/bindings/interconnect/qcom,sc7280-rpmh.yaml     |    2 +-
 .../devicetree/bindings/interconnect/qcom,sc8280xp-rpmh.yaml   |    2 +-
 .../devicetree/bindings/interconnect/qcom,sm7150-rpmh.yaml     |    2 +-
 .../devicetree/bindings/interconnect/qcom,sm8450-rpmh.yaml     |    2 +-
 .../devicetree/bindings/interconnect/qcom,sm8550-rpmh.yaml     |    2 +-
 .../devicetree/bindings/interconnect/qcom,sm8650-rpmh.yaml     |    2 +-
 .../devicetree/bindings/interconnect/qcom,sm8750-rpmh.yaml     |    2 +-
 .../devicetree/bindings/interconnect/qcom,x1e80100-rpmh.yaml   |    2 +-
 drivers/interconnect/qcom/Kconfig                              |    9 +
 drivers/interconnect/qcom/Makefile                             |    2 +
 drivers/interconnect/qcom/milos.c                              | 1931 ++++++++
 drivers/interconnect/qcom/qcs615.c                             |   42 -
 drivers/interconnect/qcom/sc8180x.c                            |    6 +
 drivers/interconnect/qcom/sc8280xp.c                           |    1 +
 include/dt-bindings/interconnect/qcom,milos-rpmh.h             |  141 +
 20 files changed, 2243 insertions(+), 52 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/interconnect/qcom,milos-rpmh.yaml
 create mode 100644 drivers/interconnect/qcom/milos.c
 create mode 100644 include/dt-bindings/interconnect/qcom,milos-rpmh.h

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [GIT PULL] interconnect changes for 6.17
  2025-07-24  5:57 [GIT PULL] interconnect changes for 6.17 Georgi Djakov
@ 2025-07-24  6:04 ` Greg KH
  0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2025-07-24  6:04 UTC (permalink / raw)
  To: Georgi Djakov; +Cc: linux-pm, linux-kernel

On Thu, Jul 24, 2025 at 08:57:16AM +0300, Georgi Djakov wrote:
> Hello Greg,
> 
> This is the pull request with interconnect changes for the v6.17-rc1 merge
> window. This time it contains only driver changes. As always, the summary
> is in the signed tag.
> 
> All patches have been in linux-next during the last few days. There are
> currently no reported issues. Please pull into char-misc-next when possible.
> 
> Thanks,
> Georgi
> 
> 
> The following changes since commit 19272b37aa4f83ca52bdf9c16d5d81bdd1354494:
> 
>   Linux 6.16-rc1 (2025-06-08 13:44:43 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git tags/icc-6.17-rc1

Pulled and pushed out, thanks.

greg k-h

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-07-24  6:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-24  5:57 [GIT PULL] interconnect changes for 6.17 Georgi Djakov
2025-07-24  6:04 ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).