soc.lore.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] Qualcomm driver updates for v6.5
@ 2023-06-11  1:00 Bjorn Andersson
  2023-06-21 20:30 ` patchwork-bot+linux-soc
  0 siblings, 1 reply; 2+ messages in thread
From: Bjorn Andersson @ 2023-06-11  1:00 UTC (permalink / raw)
  To: arm, soc
  Cc: linux-arm-msm, linux-arm-kernel, Andy Gross, Arnd Bergmann,
	Olof Johansson, Kevin Hilman, Robert Marko, Konrad Dybcio,
	Kathiravan T, Bartosz Golaszewski, Bhupesh Sharma,
	Christian Marangi, Gokul krishna Krishnakumar,
	Krzysztof Kozlowski, Luca Weiss, Matti Lehtimäki,
	Min-Hua Chen, Neil Armstrong, Tejun Heo, Uwe Kleine-König


The following changes since commit ac9a78681b921877518763ba0e89202254349d1b:

  Linux 6.4-rc1 (2023-05-07 13:34:35 -0700)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git tags/qcom-drivers-for-6.5

for you to fetch changes up to e81a16e77259294cd4ff0a9c1fbe5aa0e311a47d:

  soc: qcom: ocmem: Add OCMEM hardware version print (2023-05-29 14:42:43 -0700)

----------------------------------------------------------------
Qualcomm driver updates for v6.5

Konrad Dybcio is promoted, from reviewer, to co-maintainer.

The mdt_loader gets a fix to the detection of split binaries, where the
previous logic sometimes concluded that the first segments was not
split, in a split image. The unconditional calling of
scm_pas_mem_setup() turns out to cause a regression and is reverted.

The altmode subfunction of pmic_glink is enabled for SM8450.

A new driver for exposing power statistics from the RPM, for debugging
purposes, is introduced.

OCMEM gets a debug prints of the hardware version, QMI helpers are
transitioned to alloc_ordered_workqueue() and an error message in
ramp_controller is improved.

An API is introduced to the SMEM driver to allow other drivers to query
the SoC id, rather than open-coding the parsing of the relevant SMEM
item. This is then used to clean up the Qualcomm NVMEM-based cpufreq
driver.

Socinfo is extended with knowledge about IPQ5018, IPQ5312 and IPQ5302.

----------------------------------------------------------------
Bartosz Golaszewski (1):
      dt-bindings: soc: qcom: aoss-qmp: add compatible for sa8775p

Bhupesh Sharma (1):
      dt-bindings: soc: qcom: eud: Fix compatible string in the example

Christian Marangi (1):
      soc: qcom: mdt_loader: Fix unconditional call to scm_pas_mem_setup

Gokul krishna Krishnakumar (1):
      soc: qcom: mdt_loader: Enhance split binary detection

Kathiravan T (2):
      dt-bindings: arm: qcom,ids: add SoC ID for IPQ5312 and IPQ5302
      soc: qcom: socinfo: Add Soc ID for IPQ5312 and IPQ5302

Konrad Dybcio (3):
      dt-bindings: soc: qcom: Add RPM Master stats
      soc: qcom: Introduce RPM master stats driver
      MAINTAINERS: Add Konrad Dybcio as linux-arm-msm co-maintainer

Krzysztof Kozlowski (1):
      dt-bindings: soc: qcom: smd-rpm: allow MSM8226 over SMD

Luca Weiss (1):
      soc: qcom: ocmem: Add OCMEM hardware version print

Matti Lehtimäki (1):
      dt-bindings: sram: qcom,imem: Document MSM8226

Min-Hua Chen (1):
      soc: qcom: rpmpd: use correct __le32 type

Neil Armstrong (1):
      qcom: pmic_glink: enable altmode for SM8450

Robert Marko (7):
      dt-bindings: arm: qcom,ids: Add IDs for IPQ5018 family
      soc: qcom: socinfo: Add IDs for IPQ5018 family
      soc: qcom: socinfo: move SMEM item struct and defines to a header
      soc: qcom: smem: Switch to EXPORT_SYMBOL_GPL()
      soc: qcom: smem: introduce qcom_smem_get_soc_id()
      cpufreq: qcom-nvmem: use SoC ID-s from bindings
      cpufreq: qcom-nvmem: use helper to get SMEM SoC ID

Tejun Heo (1):
      soc: qcom: qmi: Use alloc_ordered_workqueue() to create ordered workqueues

Uwe Kleine-König (1):
      soc: qcom: ramp_controller: Improve error message for failure in .remove()

 .../bindings/soc/qcom/qcom,aoss-qmp.yaml           |   1 +
 .../devicetree/bindings/soc/qcom/qcom,eud.yaml     |   4 +-
 .../bindings/soc/qcom/qcom,rpm-master-stats.yaml   |  69 +++++++++
 .../devicetree/bindings/soc/qcom/qcom,smd-rpm.yaml |   1 +
 .../devicetree/bindings/sram/qcom,imem.yaml        |   1 +
 MAINTAINERS                                        |   2 +-
 drivers/cpufreq/qcom-cpufreq-nvmem.c               |  63 ++------
 drivers/soc/qcom/Kconfig                           |  11 ++
 drivers/soc/qcom/Makefile                          |   1 +
 drivers/soc/qcom/mdt_loader.c                      |  41 +++++-
 drivers/soc/qcom/ocmem.c                           |  10 ++
 drivers/soc/qcom/pmic_glink.c                      |   8 +-
 drivers/soc/qcom/qmi_interface.c                   |   2 +-
 drivers/soc/qcom/ramp_controller.c                 |  11 +-
 drivers/soc/qcom/rpm_master_stats.c                | 163 +++++++++++++++++++++
 drivers/soc/qcom/rpmpd.c                           |   4 +-
 drivers/soc/qcom/smem.c                            |  31 +++-
 drivers/soc/qcom/socinfo.c                         |  77 ++--------
 include/dt-bindings/arm/qcom,ids.h                 |  10 ++
 include/linux/soc/qcom/smem.h                      |   2 +
 include/linux/soc/qcom/socinfo.h                   |  70 +++++++++
 21 files changed, 442 insertions(+), 140 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/soc/qcom/qcom,rpm-master-stats.yaml
 create mode 100644 drivers/soc/qcom/rpm_master_stats.c
 create mode 100644 include/linux/soc/qcom/socinfo.h

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

* Re: [GIT PULL] Qualcomm driver updates for v6.5
  2023-06-11  1:00 [GIT PULL] Qualcomm driver updates for v6.5 Bjorn Andersson
@ 2023-06-21 20:30 ` patchwork-bot+linux-soc
  0 siblings, 0 replies; 2+ messages in thread
From: patchwork-bot+linux-soc @ 2023-06-21 20:30 UTC (permalink / raw)
  To: Bjorn Andersson; +Cc: soc

Hello:

This pull request was applied to soc/soc.git (for-next)
by Arnd Bergmann <arnd@arndb.de>:

On Sat, 10 Jun 2023 18:00:44 -0700 you wrote:
> The following changes since commit ac9a78681b921877518763ba0e89202254349d1b:
> 
>   Linux 6.4-rc1 (2023-05-07 13:34:35 -0700)
> 
> are available in the Git repository at:
> 
>   https://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git tags/qcom-drivers-for-6.5
> 
> [...]

Here is the summary with links:
  - [GIT,PULL] Qualcomm driver updates for v6.5
    https://git.kernel.org/soc/soc/c/a08000d5e04d

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

end of thread, other threads:[~2023-06-21 20:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-11  1:00 [GIT PULL] Qualcomm driver updates for v6.5 Bjorn Andersson
2023-06-21 20:30 ` patchwork-bot+linux-soc

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).