Message ID | 20240306135516.510557-1-djakov@kernel.org (mailing list archive) |
---|---|
State | Handled Elsewhere, archived |
Headers | show |
Series | [GIT,PULL] interconnect changes for 6.9 | expand |
On Wed, Mar 06, 2024 at 03:55:16PM +0200, Georgi Djakov wrote: > Hello Greg, > > This is the pull request with interconnect changes for the v6.9-rc1 merge > window. It contains new drivers and clean-ups. As always, the summary is > in the signed tag. > > All patches have been in linux-next for a week with no reported issues. > Please pull into char-misc-next when possible. > > Thanks, > Georgi > > The following changes since commit 6613476e225e090cc9aad49be7fa504e290dd33d: > > Linux 6.8-rc1 (2024-01-21 14:11:32 -0800) > > are available in the Git repository at: > > git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git tags/icc-6.9-rc1 Pulled and pushed out, thanks. greg k-h
Hello Greg, This is the pull request with interconnect changes for the v6.9-rc1 merge window. It contains new drivers and clean-ups. As always, the summary is in the signed tag. All patches have been in linux-next for a week with no reported issues. Please pull into char-misc-next when possible. Thanks, Georgi The following changes since commit 6613476e225e090cc9aad49be7fa504e290dd33d: Linux 6.8-rc1 (2024-01-21 14:11:32 -0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git tags/icc-6.9-rc1 for you to fetch changes up to d1c16491134c726a78dd6936034f117acdc57185: Merge branch 'icc-sm7150' into icc-next (2024-02-29 22:43:01 +0200) ---------------------------------------------------------------- interconnect changes for 6.9 This pull request contains the interconnect changes for the 6.9-rc1 merge window. The highlights are below: Core changes: - Constify the of_phandle_args in xlate functions. Driver changes: - New interconnect driver for the MSM8909 platform. - New interconnect driver for the SM7150 platform. - Clean-up and removal of unused resources in drivers. - Constify some pointers to structs. Signed-off-by: Georgi Djakov <djakov@kernel.org> ---------------------------------------------------------------- Adam Skladowski (2): dt-bindings: interconnect: Add Qualcomm MSM8909 DT bindings interconnect: qcom: Add MSM8909 interconnect provider driver Danila Tikhonov (2): dt-bindings: interconnect: Add Qualcomm SM7150 DT bindings interconnect: qcom: Add SM7150 driver support Georgi Djakov (3): Merge branch 'icc-msm8909' into icc-next Merge branch 'icc-cleanup' into icc-next Merge branch 'icc-sm7150' into icc-next Jeffrey Hugo (1): dt-bindings: interconnect: qcom,rpmh: Fix bouncing @codeaurora address Konrad Dybcio (3): interconnect: qcom: sm8550: Remove bogus per-RSC BCMs and nodes dt-bindings: interconnect: Remove bogus interconnect nodes interconnect: qcom: x1e80100: Remove bogus per-RSC BCMs and nodes Krzysztof Kozlowski (7): interconnect: qcom: msm8909: constify pointer to qcom_icc_node interconnect: qcom: sa8775p: constify pointer to qcom_icc_node interconnect: qcom: sm8250: constify pointer to qcom_icc_node interconnect: qcom: sm6115: constify pointer to qcom_icc_node interconnect: qcom: sa8775p: constify pointer to qcom_icc_bcm interconnect: qcom: x1e80100: constify pointer to qcom_icc_bcm interconnect: constify of_phandle_args in xlate Documentation/devicetree/bindings/interconnect/qcom,rpm.yaml | 3 + Documentation/devicetree/bindings/interconnect/qcom,rpmh.yaml | 2 +- .../devicetree/bindings/interconnect/qcom,sm7150-rpmh.yaml | 84 + drivers/interconnect/core.c | 4 +- drivers/interconnect/qcom/Kconfig | 18 + drivers/interconnect/qcom/Makefile | 4 + drivers/interconnect/qcom/icc-common.c | 3 +- drivers/interconnect/qcom/icc-common.h | 3 +- drivers/interconnect/qcom/msm8909.c | 1329 ++++++ drivers/interconnect/qcom/sa8775p.c | 56 +- drivers/interconnect/qcom/sm6115.c | 12 +- drivers/interconnect/qcom/sm7150.c | 1754 ++++++++ drivers/interconnect/qcom/sm7150.h | 140 + drivers/interconnect/qcom/sm8250.c | 2 +- drivers/interconnect/qcom/sm8550.c | 574 --- drivers/interconnect/qcom/sm8550.h | 284 +- drivers/interconnect/qcom/x1e80100.c | 327 +- drivers/interconnect/samsung/exynos.c | 2 +- drivers/memory/tegra/mc.c | 2 +- drivers/memory/tegra/tegra124-emc.c | 2 +- drivers/memory/tegra/tegra124.c | 2 +- drivers/memory/tegra/tegra186-emc.c | 2 +- drivers/memory/tegra/tegra20-emc.c | 2 +- drivers/memory/tegra/tegra20.c | 2 +- drivers/memory/tegra/tegra30-emc.c | 2 +- drivers/memory/tegra/tegra30.c | 2 +- include/dt-bindings/interconnect/qcom,msm8909.h | 93 + include/dt-bindings/interconnect/qcom,sm7150-rpmh.h | 150 + include/dt-bindings/interconnect/qcom,x1e80100-rpmh.h | 24 - include/linux/interconnect-provider.h | 11 +- include/soc/tegra/mc.h | 7 +- 31 files changed, 3764 insertions(+), 1138 deletions(-) create mode 100644 Documentation/devicetree/bindings/interconnect/qcom,sm7150-rpmh.yaml create mode 100644 drivers/interconnect/qcom/msm8909.c create mode 100644 drivers/interconnect/qcom/sm7150.c create mode 100644 drivers/interconnect/qcom/sm7150.h create mode 100644 include/dt-bindings/interconnect/qcom,msm8909.h create mode 100644 include/dt-bindings/interconnect/qcom,sm7150-rpmh.h