From: rnayak@codeaurora.org (Rajendra Nayak)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v5 00/11] Add support for QCOM GDSCs
Date: Tue, 14 Apr 2015 18:42:06 +0530 [thread overview]
Message-ID: <1429017137-20218-1-git-send-email-rnayak@codeaurora.org> (raw)
GDSCs (Global Distributed Switch Controllers) control switches
that supply power to an on-chip power domain and hence can be
programmed in SW to safely power collapse and restore power to the
respective PDs. They are part of a considerable number of recent QCOM
SoCs (This series adds support for msm8974, msm8916 and apq8084 devices)
and are part of the Clock control block.
The series implements support for GDSC using the genpd framework
modelling these as SW controllable power domains and uses PM clocks
to control clocks within the gdsc.
* Client drivers which plan to use GDSC can refer to
Documentation/devicetree/bindings/power/power_domain.txt to know
how to hook up the power domain for the device through DT
* Runtime PM specific documentation can be found in
Documentation/power/runtime_pm.txt
* Patches are based of latest clk-next branch
Changes since v4:
* Added clock control support using PM clocks
* Included WA to enable an RCG (needed for Oxili gdsc in 8916)
Changes since v3:
* static inline'd gdsc_register/unregister stubs
* error check fixes in gdsc_register
* dropped oxili_gdsc for 8916 as its broken and needs additional
WA's not part of this series
* split dts and driver changes into seperate patches
* Updated and included Stephanes patch to add gdscs to apq8084 mmcc
in the series
Changes since v2:
* gdsc_unregister added
* gdsc_register/unregister introduced in patch 1/6
Changes since v1:
* added err checks for regmap apis
* added gdsc_register() in gdsc.c
Rajendra Nayak (7):
clk: qcom: gdsc: Prepare common clk probe to register gdscs
clk: qcom: gdsc: Add GDSCs in msm8916 GCC
clk: qcom: gdsc: Add GDSCs in apq8084 GCC
arm: dts: qcom: Add #power-domain-cells property
clk: qcom: gdsc: Use PM clocks to control gdsc clocks
clk: qcom: gdsc: Enable an RCG before turning on the gdsc
clk: qcom: gdsc: Add oxili GDSC for msm8916
Stephane Viau (1):
clk: qcom: gdsc: Add GDSCs in apq8084 MMCC
Stephen Boyd (3):
clk: qcom: Add support for GDSCs
clk: qcom: gdsc: Add GDSCs in msm8974 GCC
clk: qcom: gdsc: Add GDSCs in msm8974 MMCC
arch/arm/boot/dts/qcom-apq8084.dtsi | 1 +
arch/arm/boot/dts/qcom-msm8974.dtsi | 2 +
drivers/clk/qcom/Kconfig | 10 ++
drivers/clk/qcom/Makefile | 1 +
drivers/clk/qcom/common.c | 16 +-
drivers/clk/qcom/common.h | 2 +
drivers/clk/qcom/gcc-apq8084.c | 38 +++++
drivers/clk/qcom/gcc-msm8916.c | 47 ++++++
drivers/clk/qcom/gcc-msm8974.c | 14 ++
drivers/clk/qcom/gdsc.c | 228 ++++++++++++++++++++++++++
drivers/clk/qcom/gdsc.h | 50 ++++++
drivers/clk/qcom/mmcc-apq8084.c | 56 ++++++-
drivers/clk/qcom/mmcc-msm8974.c | 54 ++++++
include/dt-bindings/clock/qcom,gcc-apq8084.h | 6 +
include/dt-bindings/clock/qcom,gcc-msm8916.h | 8 +
include/dt-bindings/clock/qcom,gcc-msm8974.h | 3 +
include/dt-bindings/clock/qcom,mmcc-apq8084.h | 8 +
include/dt-bindings/clock/qcom,mmcc-msm8974.h | 8 +
18 files changed, 550 insertions(+), 2 deletions(-)
create mode 100644 drivers/clk/qcom/gdsc.c
create mode 100644 drivers/clk/qcom/gdsc.h
--
QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member
of Code Aurora Forum, hosted by The Linux Foundation
next reply other threads:[~2015-04-14 13:12 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-14 13:12 Rajendra Nayak [this message]
2015-04-14 13:12 ` [PATCH v5 01/11] clk: qcom: Add support for GDSCs Rajendra Nayak
2015-04-14 13:12 ` [PATCH v5 02/11] clk: qcom: gdsc: Prepare common clk probe to register gdscs Rajendra Nayak
2015-04-14 13:12 ` [PATCH v5 03/11] clk: qcom: gdsc: Add GDSCs in msm8916 GCC Rajendra Nayak
2015-04-14 13:12 ` [PATCH v5 04/11] clk: qcom: gdsc: Add GDSCs in msm8974 GCC Rajendra Nayak
2015-04-14 13:12 ` [PATCH v5 05/11] clk: qcom: gdsc: Add GDSCs in msm8974 MMCC Rajendra Nayak
2015-04-14 13:12 ` [PATCH v5 06/11] clk: qcom: gdsc: Add GDSCs in apq8084 GCC Rajendra Nayak
2015-04-14 13:12 ` [PATCH v5 07/11] clk: qcom: gdsc: Add GDSCs in apq8084 MMCC Rajendra Nayak
2015-04-14 13:12 ` [PATCH v5 08/11] arm: dts: qcom: Add #power-domain-cells property Rajendra Nayak
2015-04-24 9:45 ` Ulf Hansson
2015-04-24 10:55 ` Rajendra Nayak
2015-04-24 11:00 ` Rajendra Nayak
2015-04-24 15:43 ` Ulf Hansson
2015-04-27 2:32 ` Rajendra Nayak
2015-04-27 7:52 ` Ulf Hansson
2015-04-27 9:33 ` Rajendra Nayak
2015-04-14 13:12 ` [PATCH v5 09/11] clk: qcom: gdsc: Use PM clocks to control gdsc clocks Rajendra Nayak
2015-04-30 15:26 ` Stanimir Varbanov
2015-05-12 3:02 ` Rajendra Nayak
2015-04-14 13:12 ` [PATCH v5 10/11] clk: qcom: gdsc: Enable an RCG before turning on the gdsc Rajendra Nayak
2015-04-14 13:12 ` [PATCH v5 11/11] clk: qcom: gdsc: Add oxili GDSC for msm8916 Rajendra Nayak
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=1429017137-20218-1-git-send-email-rnayak@codeaurora.org \
--to=rnayak@codeaurora.org \
--cc=linux-arm-kernel@lists.infradead.org \
/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 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).