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

Hello Greg,

This is the v2 pull request with interconnect changes for the 5.20-rc1 merge
window. It contains driver updates. The details are in the signed tag.

I have fixed the "Fixes" tag, so now we should be all good. Please pull 
into char-misc-next when possible.

Thanks,
Georgi

The following changes since commit f2906aa863381afb0015a9eb7fefad885d4e5a56:

  Linux 5.19-rc1 (2022-06-05 17:18:54 -0700)

are available in the Git repository at:

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

for you to fetch changes up to 009c963eefa058384052d32d5b06fbc738195bdb:

  Merge branch 'icc-rpm' into icc-next (2022-07-15 17:56:31 +0300)

----------------------------------------------------------------
interconnect changes for 5.20

Here are the interconnect changes for the 5.20-rc1 merge window consisting
of two new drivers, misc driver improvements and new device managed API.

 Core change:
- Add device managed bulk API

 Driver changes:
- New driver for NXP i.MX8MP platforms
- New driver for Qualcomm SM6350 platforms
- Multiple bucket support for Qualcomm RPM-based drivers.

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

----------------------------------------------------------------
Bryan O'Donoghue (1):
      interconnect: icc-rpm: Set destination bandwidth as well as source bandwidth

Georgi Djakov (3):
      Merge branch 'icc-sm6350' into icc-next
      Merge branch 'icc-imx8mp' into icc-next
      Merge branch 'icc-rpm' into icc-next

Leo Yan (6):
      interconnect: qcom: msm8939: Use icc_sync_state
      dt-bindings: interconnect: Update property for icc-rpm path tag
      interconnect: qcom: Move qcom_icc_xlate_extended() to a common file
      interconnect: qcom: icc-rpm: Change to use qcom_icc_xlate_extended()
      interconnect: qcom: icc-rpm: Support multiple buckets
      interconnect: qcom: icc-rpm: Set bandwidth and clock for bucket values

Luca Weiss (4):
      interconnect: qcom: icc-rpmh: Support child NoC device probe
      dt-bindings: interconnect: qcom: Split out rpmh-common bindings
      dt-bindings: interconnect: Add Qualcomm SM6350 NoC support
      interconnect: qcom: Add SM6350 driver support

Peng Fan (9):
      dt-bindings: interconnect: imx8m: Add bindings for imx8mp noc
      dt-bindings: interconnect: add fsl,imx8mp.h
      interconnect: add device managed bulk API
      interconnect: imx: fix max_node_id
      interconnect: imx: set src node
      interconnect: imx: introduce imx_icc_provider
      interconnect: imx: configure NoC mode/prioriry/ext_control
      interconnect: imx: Add platform driver for imx8mp
      PM / devfreq: imx: Register i.MX8MP interconnect device

 .../devicetree/bindings/interconnect/fsl,imx8m-noc.yaml         |   6 +-
 Documentation/devicetree/bindings/interconnect/qcom,rpm.yaml    |   6 +-
 .../devicetree/bindings/interconnect/qcom,rpmh-common.yaml      |  43 +
 Documentation/devicetree/bindings/interconnect/qcom,rpmh.yaml   |  22 +-
 .../devicetree/bindings/interconnect/qcom,sm6350-rpmh.yaml      |  82 ++
 drivers/devfreq/imx-bus.c                                       |   1 +
 drivers/interconnect/bulk.c                                     |  42 +
 drivers/interconnect/imx/Kconfig                                |   4 +
 drivers/interconnect/imx/Makefile                               |   2 +
 drivers/interconnect/imx/imx.c                                  |  84 +-
 drivers/interconnect/imx/imx.h                                  |  49 +-
 drivers/interconnect/imx/imx8mm.c                               |   2 +-
 drivers/interconnect/imx/imx8mn.c                               |   2 +-
 drivers/interconnect/imx/imx8mp.c                               | 259 ++++
 drivers/interconnect/imx/imx8mq.c                               |   2 +-
 drivers/interconnect/qcom/Kconfig                               |   9 +
 drivers/interconnect/qcom/Makefile                              |   5 +
 drivers/interconnect/qcom/icc-common.c                          |  34 +
 drivers/interconnect/qcom/icc-common.h                          |  13 +
 drivers/interconnect/qcom/icc-rpm.c                             | 168 ++-
 drivers/interconnect/qcom/icc-rpm.h                             |   6 +
 drivers/interconnect/qcom/icc-rpmh.c                            |  30 +-
 drivers/interconnect/qcom/icc-rpmh.h                            |   1 -
 drivers/interconnect/qcom/msm8939.c                             |   1 +
 drivers/interconnect/qcom/sm6350.c                              | 493 ++++++++
 drivers/interconnect/qcom/sm6350.h                              | 139 ++
 drivers/interconnect/qcom/sm8450.c                              |   1 +
 include/dt-bindings/interconnect/fsl,imx8mp.h                   |  59 +
 include/dt-bindings/interconnect/qcom,sm6350.h                  | 148 +++
 include/linux/interconnect.h                                    |   7 +
 30 files changed, 1627 insertions(+), 93 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/interconnect/qcom,rpmh-common.yaml
 create mode 100644 Documentation/devicetree/bindings/interconnect/qcom,sm6350-rpmh.yaml
 create mode 100644 drivers/interconnect/imx/imx8mp.c
 create mode 100644 drivers/interconnect/qcom/icc-common.c
 create mode 100644 drivers/interconnect/qcom/icc-common.h
 create mode 100644 drivers/interconnect/qcom/sm6350.c
 create mode 100644 drivers/interconnect/qcom/sm6350.h
 create mode 100644 include/dt-bindings/interconnect/fsl,imx8mp.h
 create mode 100644 include/dt-bindings/interconnect/qcom,sm6350.h

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

* Re: [GIT PULL v2] interconnect changes for 5.20
  2022-07-15 15:31 [GIT PULL v2] interconnect changes for 5.20 Georgi Djakov
@ 2022-07-16  5:23 ` Greg KH
  0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2022-07-16  5:23 UTC (permalink / raw)
  To: Georgi Djakov; +Cc: linux-pm, linux-kernel

On Fri, Jul 15, 2022 at 06:31:46PM +0300, Georgi Djakov wrote:
> Hello Greg,
> 
> This is the v2 pull request with interconnect changes for the 5.20-rc1 merge
> window. It contains driver updates. The details are in the signed tag.
> 
> I have fixed the "Fixes" tag, so now we should be all good. Please pull 
> into char-misc-next when possible.
> 
> Thanks,
> Georgi
> 
> The following changes since commit f2906aa863381afb0015a9eb7fefad885d4e5a56:
> 
>   Linux 5.19-rc1 (2022-06-05 17:18:54 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git tags/icc-5.20-rc1-v2

Pulled and pushed out now, thanks.

greg k-h

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

end of thread, other threads:[~2022-07-16  5:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-15 15:31 [GIT PULL v2] interconnect changes for 5.20 Georgi Djakov
2022-07-16  5:23 ` 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).