* [GIT PULL] Qualcomm driver updates for v5.7
@ 2020-03-18 4:42 ` Bjorn Andersson
0 siblings, 0 replies; 2+ messages in thread
From: Bjorn Andersson @ 2020-03-18 4:42 UTC (permalink / raw)
To: arm, soc
Cc: linux-arm-msm, linux-arm-kernel, Andy Gross, Arnd Bergmann,
Olof Johansson, Kevin Hilman, Sibi Sankar, Arun Kumar Neelakantam,
Maulik Shah, Stephen Boyd, Ansuel Smith, Bjorn Andersson,
Manivannan Sadhasivam, Nathan Chancellor
The following changes since commit bb6d3fb354c5ee8d6bde2d576eb7220ea09862b9:
Linux 5.6-rc1 (2020-02-09 16:08:48 -0800)
are available in the Git repository at:
https://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git tags/qcom-drivers-for-5.7
for you to fetch changes up to de722e410661b9c9173a82af4329d337d341f777:
soc: qcom: Fix QCOM_APR dependencies (2020-03-16 15:07:19 -0700)
----------------------------------------------------------------
Qualcomm driver updates for v5.7
This adds a new library for subscribing to notifications about
protection domains being stated and stopped and the integration of this
with the APR driver. It also contains fixes and cleanups for AOSS
driver, socinfo and rpmh.
----------------------------------------------------------------
Ansuel Smith (1):
devicetree: bindings: firmware: add ipq806x to qcom_scm
Arun Kumar Neelakantam (2):
soc: qcom: aoss: Use wake_up_all() instead of wake_up_interruptible_all()
soc: qcom: aoss: Read back before triggering the IRQ
Bjorn Andersson (1):
soc: qcom: Fix QCOM_APR dependencies
Manivannan Sadhasivam (1):
soc: qcom: Do not depend on ARCH_QCOM for QMI helpers
Maulik Shah (2):
drivers: qcom: rpmh: fix macro to accept NULL argument
drivers: qcom: rpmh: remove rpmh_flush export
Nathan Chancellor (1):
soc: qcom: pdr: Avoid uninitialized use of found in pdr_indication_cb
Sibi Sankar (3):
soc: qcom: Introduce Protection Domain Restart helpers
dt-bindings: soc: qcom: apr: Add protection domain bindings
soc: qcom: apr: Add avs/audio tracking functionality
Stephen Boyd (2):
drivers: qcom: rpmh-rsc: Use rcuidle tracepoints for rpmh
soc: qcom: socinfo: Use seq_putc() if possible
.../devicetree/bindings/firmware/qcom,scm.txt | 1 +
.../devicetree/bindings/soc/qcom/qcom,apr.txt | 50 ++
drivers/soc/qcom/Kconfig | 7 +-
drivers/soc/qcom/Makefile | 1 +
drivers/soc/qcom/apr.c | 123 +++-
drivers/soc/qcom/pdr_interface.c | 757 +++++++++++++++++++++
drivers/soc/qcom/pdr_internal.h | 379 +++++++++++
drivers/soc/qcom/qcom_aoss.c | 6 +-
drivers/soc/qcom/rpmh-internal.h | 1 +
drivers/soc/qcom/rpmh-rsc.c | 2 +-
drivers/soc/qcom/rpmh.c | 22 +-
drivers/soc/qcom/socinfo.c | 2 +-
include/linux/soc/qcom/apr.h | 1 +
include/linux/soc/qcom/pdr.h | 29 +
include/linux/soc/qcom/qmi.h | 1 +
include/soc/qcom/rpmh.h | 5 -
16 files changed, 1357 insertions(+), 30 deletions(-)
create mode 100644 drivers/soc/qcom/pdr_interface.c
create mode 100644 drivers/soc/qcom/pdr_internal.h
create mode 100644 include/linux/soc/qcom/pdr.h
^ permalink raw reply [flat|nested] 2+ messages in thread
* [GIT PULL] Qualcomm driver updates for v5.7
@ 2020-03-18 4:42 ` Bjorn Andersson
0 siblings, 0 replies; 2+ messages in thread
From: Bjorn Andersson @ 2020-03-18 4:42 UTC (permalink / raw)
To: arm, soc
Cc: Maulik Shah, Arnd Bergmann, linux-arm-msm, Manivannan Sadhasivam,
Stephen Boyd, Andy Gross, Arun Kumar Neelakantam, Sibi Sankar,
Kevin Hilman, Olof Johansson, Nathan Chancellor, Bjorn Andersson,
Ansuel Smith, linux-arm-kernel
The following changes since commit bb6d3fb354c5ee8d6bde2d576eb7220ea09862b9:
Linux 5.6-rc1 (2020-02-09 16:08:48 -0800)
are available in the Git repository at:
https://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git tags/qcom-drivers-for-5.7
for you to fetch changes up to de722e410661b9c9173a82af4329d337d341f777:
soc: qcom: Fix QCOM_APR dependencies (2020-03-16 15:07:19 -0700)
----------------------------------------------------------------
Qualcomm driver updates for v5.7
This adds a new library for subscribing to notifications about
protection domains being stated and stopped and the integration of this
with the APR driver. It also contains fixes and cleanups for AOSS
driver, socinfo and rpmh.
----------------------------------------------------------------
Ansuel Smith (1):
devicetree: bindings: firmware: add ipq806x to qcom_scm
Arun Kumar Neelakantam (2):
soc: qcom: aoss: Use wake_up_all() instead of wake_up_interruptible_all()
soc: qcom: aoss: Read back before triggering the IRQ
Bjorn Andersson (1):
soc: qcom: Fix QCOM_APR dependencies
Manivannan Sadhasivam (1):
soc: qcom: Do not depend on ARCH_QCOM for QMI helpers
Maulik Shah (2):
drivers: qcom: rpmh: fix macro to accept NULL argument
drivers: qcom: rpmh: remove rpmh_flush export
Nathan Chancellor (1):
soc: qcom: pdr: Avoid uninitialized use of found in pdr_indication_cb
Sibi Sankar (3):
soc: qcom: Introduce Protection Domain Restart helpers
dt-bindings: soc: qcom: apr: Add protection domain bindings
soc: qcom: apr: Add avs/audio tracking functionality
Stephen Boyd (2):
drivers: qcom: rpmh-rsc: Use rcuidle tracepoints for rpmh
soc: qcom: socinfo: Use seq_putc() if possible
.../devicetree/bindings/firmware/qcom,scm.txt | 1 +
.../devicetree/bindings/soc/qcom/qcom,apr.txt | 50 ++
drivers/soc/qcom/Kconfig | 7 +-
drivers/soc/qcom/Makefile | 1 +
drivers/soc/qcom/apr.c | 123 +++-
drivers/soc/qcom/pdr_interface.c | 757 +++++++++++++++++++++
drivers/soc/qcom/pdr_internal.h | 379 +++++++++++
drivers/soc/qcom/qcom_aoss.c | 6 +-
drivers/soc/qcom/rpmh-internal.h | 1 +
drivers/soc/qcom/rpmh-rsc.c | 2 +-
drivers/soc/qcom/rpmh.c | 22 +-
drivers/soc/qcom/socinfo.c | 2 +-
include/linux/soc/qcom/apr.h | 1 +
include/linux/soc/qcom/pdr.h | 29 +
include/linux/soc/qcom/qmi.h | 1 +
include/soc/qcom/rpmh.h | 5 -
16 files changed, 1357 insertions(+), 30 deletions(-)
create mode 100644 drivers/soc/qcom/pdr_interface.c
create mode 100644 drivers/soc/qcom/pdr_internal.h
create mode 100644 include/linux/soc/qcom/pdr.h
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-03-18 4:42 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-18 4:42 [GIT PULL] Qualcomm driver updates for v5.7 Bjorn Andersson
2020-03-18 4:42 ` Bjorn Andersson
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.