From: Andy Gross <agross@kernel.org>
To: arm@kernel.org
Cc: linux-arm-msm@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
Bjorn Andersson <bjorn.andersson@linaro.org>,
Olof Johansson <olof@lixom.net>,
Kevin Hilman <khilman@baylibre.com>,
Arnd Bergmann <arnd@arndb.de>
Subject: [GIT PULL] Qualcomm Driver updates for 5.3
Date: Thu, 20 Jun 2019 00:01:50 -0500 [thread overview]
Message-ID: <1561006911-28519-3-git-send-email-agross@kernel.org> (raw)
In-Reply-To: <1561006911-28519-1-git-send-email-agross@kernel.org>
The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:
Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git tags/qcom-drivers-for-5.3
for you to fetch changes up to e1068c32c1d413eaf8818ac10497817af9d2f231:
soc: qcom: geni: Add support for ACPI (2019-06-19 01:03:24 -0500)
----------------------------------------------------------------
Qualcomm ARM Based Driver Updates for v5.3
* Add ACPI support to Qualcomm GENI SE
* Update Qualcomm Maintainers entry to remove David Brown as maintainer and
fixup typos and incorrect DT file entry
* Fixup APR domain id usage and making callbacks in non-atomic context
* Add AOSS QMP driver and bindings
* Add power domains for MSM8998 and QCS404 in QCOM RPMPD
* Add corner macros, max state support, and fixups for setting performance state
for Qcom RPMPD
----------------------------------------------------------------
Amit Kucheria (1):
MAINTAINERS: fix typo in file name
Bjorn Andersson (6):
soc: qcom: rpmpd: Modify corner defining macros
dt-bindings: power: Add rpm power domain bindings for qcs404
soc: qcom: rpmpd: Add QCS404 power-domains
dt-bindings: soc: qcom: Add AOSS QMP binding
soc: qcom: Add AOSS QMP driver
soc: qcom: apr: Don't use reg for domain id
David Brown (1):
MAINTAINERS: Remove myself as qcom maintainer
Lee Jones (1):
soc: qcom: geni: Add support for ACPI
Randy Dunlap (1):
soc: qcom: fix QCOM_AOSS_QMP dependency and build errors
Sibi Sankar (4):
soc: qcom: rpmpd: fixup rpmpd set performance state
soc: qcom: rpmpd: Add support to set rpmpd state to max
dt-bindings: power: Add rpm power domain bindings for msm8998
soc: qcom: rpmpd: Add MSM8998 power-domains
Srinivas Kandagatla (1):
qcom: apr: Make apr callbacks in non-atomic context
Vinod Koul (1):
MAINTAINER: Fix Qualcomm ETHQOS ethernet DT file
.../devicetree/bindings/power/qcom,rpmpd.txt | 2 +
.../devicetree/bindings/soc/qcom/qcom,aoss-qmp.txt | 81 ++++
.../devicetree/bindings/soc/qcom/qcom,apr.txt | 6 +-
MAINTAINERS | 5 +-
drivers/soc/qcom/Kconfig | 12 +
drivers/soc/qcom/Makefile | 1 +
drivers/soc/qcom/apr.c | 76 +++-
drivers/soc/qcom/qcom-geni-se.c | 21 +-
drivers/soc/qcom/qcom_aoss.c | 480 +++++++++++++++++++++
drivers/soc/qcom/rpmpd.c | 134 ++++--
include/dt-bindings/power/qcom-aoss-qmp.h | 14 +
include/dt-bindings/power/qcom-rpmpd.h | 34 ++
12 files changed, 824 insertions(+), 42 deletions(-)
create mode 100644 Documentation/devicetree/bindings/soc/qcom/qcom,aoss-qmp.txt
create mode 100644 drivers/soc/qcom/qcom_aoss.c
create mode 100644 include/dt-bindings/power/qcom-aoss-qmp.h
WARNING: multiple messages have this Message-ID (diff)
From: Andy Gross <agross@kernel.org>
To: arm@kernel.org
Cc: Arnd Bergmann <arnd@arndb.de>,
linux-arm-msm@vger.kernel.org,
Bjorn Andersson <bjorn.andersson@linaro.org>,
Kevin Hilman <khilman@baylibre.com>,
Olof Johansson <olof@lixom.net>,
linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL] Qualcomm Driver updates for 5.3
Date: Thu, 20 Jun 2019 00:01:50 -0500 [thread overview]
Message-ID: <1561006911-28519-3-git-send-email-agross@kernel.org> (raw)
In-Reply-To: <1561006911-28519-1-git-send-email-agross@kernel.org>
The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:
Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git tags/qcom-drivers-for-5.3
for you to fetch changes up to e1068c32c1d413eaf8818ac10497817af9d2f231:
soc: qcom: geni: Add support for ACPI (2019-06-19 01:03:24 -0500)
----------------------------------------------------------------
Qualcomm ARM Based Driver Updates for v5.3
* Add ACPI support to Qualcomm GENI SE
* Update Qualcomm Maintainers entry to remove David Brown as maintainer and
fixup typos and incorrect DT file entry
* Fixup APR domain id usage and making callbacks in non-atomic context
* Add AOSS QMP driver and bindings
* Add power domains for MSM8998 and QCS404 in QCOM RPMPD
* Add corner macros, max state support, and fixups for setting performance state
for Qcom RPMPD
----------------------------------------------------------------
Amit Kucheria (1):
MAINTAINERS: fix typo in file name
Bjorn Andersson (6):
soc: qcom: rpmpd: Modify corner defining macros
dt-bindings: power: Add rpm power domain bindings for qcs404
soc: qcom: rpmpd: Add QCS404 power-domains
dt-bindings: soc: qcom: Add AOSS QMP binding
soc: qcom: Add AOSS QMP driver
soc: qcom: apr: Don't use reg for domain id
David Brown (1):
MAINTAINERS: Remove myself as qcom maintainer
Lee Jones (1):
soc: qcom: geni: Add support for ACPI
Randy Dunlap (1):
soc: qcom: fix QCOM_AOSS_QMP dependency and build errors
Sibi Sankar (4):
soc: qcom: rpmpd: fixup rpmpd set performance state
soc: qcom: rpmpd: Add support to set rpmpd state to max
dt-bindings: power: Add rpm power domain bindings for msm8998
soc: qcom: rpmpd: Add MSM8998 power-domains
Srinivas Kandagatla (1):
qcom: apr: Make apr callbacks in non-atomic context
Vinod Koul (1):
MAINTAINER: Fix Qualcomm ETHQOS ethernet DT file
.../devicetree/bindings/power/qcom,rpmpd.txt | 2 +
.../devicetree/bindings/soc/qcom/qcom,aoss-qmp.txt | 81 ++++
.../devicetree/bindings/soc/qcom/qcom,apr.txt | 6 +-
MAINTAINERS | 5 +-
drivers/soc/qcom/Kconfig | 12 +
drivers/soc/qcom/Makefile | 1 +
drivers/soc/qcom/apr.c | 76 +++-
drivers/soc/qcom/qcom-geni-se.c | 21 +-
drivers/soc/qcom/qcom_aoss.c | 480 +++++++++++++++++++++
drivers/soc/qcom/rpmpd.c | 134 ++++--
include/dt-bindings/power/qcom-aoss-qmp.h | 14 +
include/dt-bindings/power/qcom-rpmpd.h | 34 ++
12 files changed, 824 insertions(+), 42 deletions(-)
create mode 100644 Documentation/devicetree/bindings/soc/qcom/qcom,aoss-qmp.txt
create mode 100644 drivers/soc/qcom/qcom_aoss.c
create mode 100644 include/dt-bindings/power/qcom-aoss-qmp.h
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2019-06-20 5:01 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-20 5:01 [GIT PULL] Qualcomm ARM64 DT updates for 5.3 Andy Gross
2019-06-20 5:01 ` Andy Gross
2019-06-20 5:01 ` [GIT PULL] Qualcomm Defconfig " Andy Gross
2019-06-20 5:01 ` Andy Gross
2019-06-25 12:13 ` Olof Johansson
2019-06-25 12:13 ` Olof Johansson
2019-06-20 5:01 ` Andy Gross [this message]
2019-06-20 5:01 ` [GIT PULL] Qualcomm Driver " Andy Gross
2019-06-25 12:40 ` Olof Johansson
2019-06-25 12:40 ` Olof Johansson
2019-06-20 5:01 ` [GIT PULL] Qualcomm Device Tree " Andy Gross
2019-06-20 5:01 ` Andy Gross
2019-06-25 11:32 ` Olof Johansson
2019-06-25 11:32 ` Olof Johansson
2019-06-25 11:31 ` [GIT PULL] Qualcomm ARM64 DT " Olof Johansson
2019-06-25 11:31 ` Olof Johansson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1561006911-28519-3-git-send-email-agross@kernel.org \
--to=agross@kernel.org \
--cc=arm@kernel.org \
--cc=arnd@arndb.de \
--cc=bjorn.andersson@linaro.org \
--cc=khilman@baylibre.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=olof@lixom.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.