mbox series

[GIT,PULL] interconnect changes for 6.4

Message ID 20230417093910.1642934-1-djakov@kernel.org
State New
Headers show
Series [GIT,PULL] interconnect changes for 6.4 | expand

Pull-request

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

Message

Georgi Djakov April 17, 2023, 9:39 a.m. UTC
Hello Greg,

This is the pull request with interconnect changes for the 6.4-rc1 merge
window. In contains cleanups and tiny updates. The details are in the
signed tag.

All patches have been in linux-next during the last two weeks. Please pull
into char-misc-next when possible.

Thanks,
Georgi

The following changes since commit e8d018dd0257f744ca50a729e3d042cf2ec9da65:

  Linux 6.3-rc3 (2023-03-19 13:27:55 -0700)

are available in the Git repository at:

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

for you to fetch changes up to b7590f3841f47d5c6732db9a6d6474162109f487:

  dt-bindings: interconnect: qcom,msm8998-bwmon: Resolve MSM8998 support (2023-04-05 11:30:00 +0300)

----------------------------------------------------------------
interconnect changes for 6.4

This pull request contains the interconnect changes for the 6.4-rc1 merge
window, which this time are mostly cleanups.

Core changes:
  interconnect: Skip call into provider if initial bw is zero
  interconnect: Use of_property_present() for testing DT property presence
  interconnect: drop racy registration API
  interconnect: drop unused icc_link_destroy() interface

Driver changes:
  interconnect: qcom: Drop obsolete dependency on COMPILE_TEST
  interconnect: qcom: drop obsolete OSM_L3/EPSS defines
  interconnect: qcom: osm-l3: drop unuserd header inclusion
  interconnect: qcom: rpm: drop bogus pm domain attach
  interconnect: qcom: rpm: make QoS INVALID default
  interconnect: qcom: rpm: Add support for specifying channel num
  interconnect: qcom: Sort kerneldoc entries
  dt-bindings: interconnect: OSM L3: Add SM6375 CPUCP compatible
  dt-bindings: interconnect: qcom,msm8998-bwmon: Resolve MSM8998 support

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

----------------------------------------------------------------
Dmitry Baryshkov (2):
      interconnect: qcom: drop obsolete OSM_L3/EPSS defines
      interconnect: qcom: osm-l3: drop unuserd header inclusion

Jean Delvare (1):
      interconnect: qcom: Drop obsolete dependency on COMPILE_TEST

Johan Hovold (3):
      interconnect: drop racy registration API
      interconnect: drop unused icc_link_destroy() interface
      interconnect: qcom: rpm: drop bogus pm domain attach

Konrad Dybcio (5):
      interconnect: qcom: rpm: make QoS INVALID default
      interconnect: qcom: rpm: Add support for specifying channel num
      interconnect: qcom: Sort kerneldoc entries
      dt-bindings: interconnect: OSM L3: Add SM6375 CPUCP compatible
      dt-bindings: interconnect: qcom,msm8998-bwmon: Resolve MSM8998 support

Rob Herring (1):
      interconnect: Use of_property_present() for testing DT property presence

Vivek Aknurwar (1):
      interconnect: Skip call into provider if initial bw is zero

 .../devicetree/bindings/interconnect/qcom,msm8998-bwmon.yaml     | 41 +++-
 Documentation/devicetree/bindings/interconnect/qcom,osm-l3.yaml  |  1 +
 drivers/interconnect/core.c                                      | 81 +-------
 drivers/interconnect/qcom/Kconfig                                |  2 +-
 drivers/interconnect/qcom/icc-rpm.c                              | 38 ++--
 drivers/interconnect/qcom/icc-rpm.h                              | 17 +-
 drivers/interconnect/qcom/msm8996.c                              |  1 -
 drivers/interconnect/qcom/osm-l3.c                               |  7 -
 drivers/interconnect/qcom/sc7180.h                               |  2 -
 drivers/interconnect/qcom/sc7280.h                               |  2 -
 drivers/interconnect/qcom/sc8180x.h                              |  2 -
 drivers/interconnect/qcom/sdm845.h                               |  2 -
 drivers/interconnect/qcom/sm8150.h                               |  2 -
 drivers/interconnect/qcom/sm8250.h                               |  2 -
 include/linux/interconnect-provider.h                            | 17 --
 15 files changed, 76 insertions(+), 141 deletions(-)

Comments

Greg Kroah-Hartman April 19, 2023, 1:07 p.m. UTC | #1
On Mon, Apr 17, 2023 at 12:39:10PM +0300, Georgi Djakov wrote:
> Hello Greg,
> 
> This is the pull request with interconnect changes for the 6.4-rc1 merge
> window. In contains cleanups and tiny updates. The details are in the
> signed tag.
> 
> All patches have been in linux-next during the last two weeks. Please pull
> into char-misc-next when possible.
> 
> Thanks,
> Georgi
> 
> The following changes since commit e8d018dd0257f744ca50a729e3d042cf2ec9da65:
> 
>   Linux 6.3-rc3 (2023-03-19 13:27:55 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git tags/icc-6.4-rc1

Pulled and pushed out, thanks.

greg k-h