All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Rajendra Nayak" <rnayak@codeaurora.org>
To: Stanimir Varbanov <svarbanov@mm-sol.com>
Cc: Rajendra Nayak <rnayak@codeaurora.org>,
	sboyd@codeaurora.org, mturquette@linaro.org,
	linux-arm-msm@vger.kernel.org, georgi.djakov@linaro.org,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 0/6] Add support for QCOM GDSCs
Date: Fri, 6 Mar 2015 04:31:40 -0000	[thread overview]
Message-ID: <4e73dedd220f1079148b4b3b7a5aabdc.squirrel@www.codeaurora.org> (raw)
In-Reply-To: <54F88A8C.4080100@mm-sol.com>


> On 03/02/2015 09:02 AM, Rajendra Nayak wrote:
>> 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.
>>
>> 8916 support has a dependency on the Global Clock controller support [1]
>> posted by Georgi Djakov.
>>
>> [1]
>> https://lkml.org/lkml/2015/2/25/416
>>
>> Rajendra Nayak (3):
>>   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
>>
>> 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
>>
>>  drivers/clk/qcom/Kconfig                      |   8 ++
>>  drivers/clk/qcom/Makefile                     |   1 +
>>  drivers/clk/qcom/common.c                     |  27 +++++-
>>  drivers/clk/qcom/common.h                     |   2 +
>>  drivers/clk/qcom/gcc-apq8084.c                |  38 ++++++++
>>  drivers/clk/qcom/gcc-msm8916.c                |  46 +++++++++
>>  drivers/clk/qcom/gcc-msm8974.c                |  14 +++
>>  drivers/clk/qcom/gdsc.c                       | 130
>> ++++++++++++++++++++++++++
>>  drivers/clk/qcom/gdsc.h                       |  43 +++++++++
>>  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-msm8974.h |   8 ++
>>  14 files changed, 387 insertions(+), 1 deletion(-)
>>  create mode 100644 drivers/clk/qcom/gdsc.c
>>  create mode 100644 drivers/clk/qcom/gdsc.h
>>
>
> You missed a patch who adds appropriate changes in qcom,gcc.txt
> (qcom,mmcc.txt), at least #power-domain-cells property should be
> described.

Right, I also missed adding those in the dts files (for 8974 and 8084)
which caused failures which I caught after I posted these out.
Thanks for taking time to review, I will fix #power-domain-cells and also
address other concerns you had on PATCH 1/6 and 2/6 and post a v2 soon.

-- 
QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member
of Code Aurora Forum, hosted by The Linux Foundation

WARNING: multiple messages have this Message-ID (diff)
From: rnayak@codeaurora.org (Rajendra Nayak)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/6] Add support for QCOM GDSCs
Date: Fri, 6 Mar 2015 04:31:40 -0000	[thread overview]
Message-ID: <4e73dedd220f1079148b4b3b7a5aabdc.squirrel@www.codeaurora.org> (raw)
In-Reply-To: <54F88A8C.4080100@mm-sol.com>


> On 03/02/2015 09:02 AM, Rajendra Nayak wrote:
>> 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.
>>
>> 8916 support has a dependency on the Global Clock controller support [1]
>> posted by Georgi Djakov.
>>
>> [1]
>> https://lkml.org/lkml/2015/2/25/416
>>
>> Rajendra Nayak (3):
>>   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
>>
>> 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
>>
>>  drivers/clk/qcom/Kconfig                      |   8 ++
>>  drivers/clk/qcom/Makefile                     |   1 +
>>  drivers/clk/qcom/common.c                     |  27 +++++-
>>  drivers/clk/qcom/common.h                     |   2 +
>>  drivers/clk/qcom/gcc-apq8084.c                |  38 ++++++++
>>  drivers/clk/qcom/gcc-msm8916.c                |  46 +++++++++
>>  drivers/clk/qcom/gcc-msm8974.c                |  14 +++
>>  drivers/clk/qcom/gdsc.c                       | 130
>> ++++++++++++++++++++++++++
>>  drivers/clk/qcom/gdsc.h                       |  43 +++++++++
>>  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-msm8974.h |   8 ++
>>  14 files changed, 387 insertions(+), 1 deletion(-)
>>  create mode 100644 drivers/clk/qcom/gdsc.c
>>  create mode 100644 drivers/clk/qcom/gdsc.h
>>
>
> You missed a patch who adds appropriate changes in qcom,gcc.txt
> (qcom,mmcc.txt), at least #power-domain-cells property should be
> described.

Right, I also missed adding those in the dts files (for 8974 and 8084)
which caused failures which I caught after I posted these out.
Thanks for taking time to review, I will fix #power-domain-cells and also
address other concerns you had on PATCH 1/6 and 2/6 and post a v2 soon.

-- 
QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member
of Code Aurora Forum, hosted by The Linux Foundation

  reply	other threads:[~2015-03-06  4:31 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-02  7:02 [PATCH 0/6] Add support for QCOM GDSCs Rajendra Nayak
2015-03-02  7:02 ` Rajendra Nayak
2015-03-02  7:02 ` [PATCH 1/6] clk: qcom: Add support for GDSCs Rajendra Nayak
2015-03-02  7:02   ` Rajendra Nayak
2015-03-05 12:47   ` Stanimir Varbanov
2015-03-05 12:47     ` Stanimir Varbanov
2015-03-02  7:02 ` [PATCH 2/6] clk: qcom: gdsc: Prepare common clk probe to register gdscs Rajendra Nayak
2015-03-02  7:02   ` Rajendra Nayak
2015-03-05 12:47   ` Stanimir Varbanov
2015-03-05 12:47     ` Stanimir Varbanov
2015-03-02  7:02 ` [PATCH 3/6] clk: qcom: gdsc: Add GDSCs in msm8916 GCC Rajendra Nayak
2015-03-02  7:02   ` Rajendra Nayak
2015-03-02  7:02 ` [PATCH 4/6] clk: qcom: gdsc: Add GDSCs in msm8974 GCC Rajendra Nayak
2015-03-02  7:02   ` Rajendra Nayak
2015-03-02  7:02 ` [PATCH 5/6] clk: qcom: gdsc: Add GDSCs in msm8974 MMCC Rajendra Nayak
2015-03-02  7:02   ` Rajendra Nayak
2015-03-02  7:02 ` [PATCH 6/6] clk: qcom: gdsc: Add GDSCs in apq8084 GCC Rajendra Nayak
2015-03-02  7:02   ` Rajendra Nayak
2015-03-05 16:55 ` [PATCH 0/6] Add support for QCOM GDSCs Stanimir Varbanov
2015-03-05 16:55   ` Stanimir Varbanov
2015-03-06  4:31   ` Rajendra Nayak [this message]
2015-03-06  4:31     ` 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=4e73dedd220f1079148b4b3b7a5aabdc.squirrel@www.codeaurora.org \
    --to=rnayak@codeaurora.org \
    --cc=georgi.djakov@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=mturquette@linaro.org \
    --cc=sboyd@codeaurora.org \
    --cc=svarbanov@mm-sol.com \
    /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.