From: Kevin Hilman <khilman@baylibre.com>
To: Sudeep Holla <sudeep.holla@arm.com>
Cc: Rob Herring <robh@kernel.org>,
Viresh Kumar <viresh.kumar@linaro.org>,
Rafael Wysocki <rjw@rjwysocki.net>,
ulf.hansson@linaro.org, Viresh Kumar <vireshk@kernel.org>,
Nishanth Menon <nm@ti.com>, Stephen Boyd <sboyd@codeaurora.org>,
linaro-kernel@lists.linaro.org, linux-pm@vger.kernel.org,
linux-kernel@vger.kernel.org,
Vincent Guittot <vincent.guittot@linaro.org>,
lina.iyer@linaro.org, rnayak@codeaurora.org,
devicetree@vger.kernel.org
Subject: Re: [PATCH V6 1/9] PM / OPP: Introduce "power-domain-opp" property
Date: Sat, 06 May 2017 11:39:08 +0200 [thread overview]
Message-ID: <m2mvaquxxf.fsf@baylibre.com> (raw)
In-Reply-To: <a307c76d-72c3-eb84-e7d4-d5e47e2af727@arm.com> (Sudeep Holla's message of "Wed, 3 May 2017 12:29:21 +0100")
Sudeep Holla <sudeep.holla@arm.com> writes:
> On 28/04/17 21:48, Rob Herring wrote:
>> On Wed, Apr 26, 2017 at 04:27:05PM +0530, Viresh Kumar wrote:
>>> Power-domains need to express their active states in DT and the devices
>>> within the power-domain need to express their dependency on those active
>>> states. The power-domains can use the OPP tables without any
>>> modifications to the bindings.
>>>
>>> Add a new property "power-domain-opp", which will contain phandle to the
>>> OPP node of the parent power domain. This is required for devices which
>>> have dependency on the configured active state of the power domain for
>>> their working.
>>>
>>> For some platforms the actual frequency and voltages of the power
>>> domains are managed by the firmware and are so hidden from the high
>>> level operating system. The "opp-hz" property is relaxed a bit to
>>> contain indexes instead of actual frequency values to support such
>>> platforms.
>>>
>>> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
>>> ---
>>> Documentation/devicetree/bindings/opp/opp.txt | 74 ++++++++++++++++++++++++++-
>>> 1 file changed, 73 insertions(+), 1 deletion(-)
>>>
>>> diff --git a/Documentation/devicetree/bindings/opp/opp.txt b/Documentation/devicetree/bindings/opp/opp.txt
>>> index 63725498bd20..6e30cae2a936 100644
>>> --- a/Documentation/devicetree/bindings/opp/opp.txt
>>> +++ b/Documentation/devicetree/bindings/opp/opp.txt
>>> @@ -77,7 +77,10 @@ This defines voltage-current-frequency combinations along with other related
>>> properties.
>>>
>>> Required properties:
>>> -- opp-hz: Frequency in Hz, expressed as a 64-bit big-endian integer.
>>> +- opp-hz: Frequency in Hz, expressed as a 64-bit big-endian integer. In some
>>> + cases the exact frequency in Hz may be hidden from the OS by the firmware and
>>> + this field may contain values that represent the frequency in a firmware
>>> + dependent way, for example an index of an array in the firmware.
>>
>> Not really sure OPP binding makes sense here. What about all the other
>> properties. We expose voltage, but not freq?
>>
>
> I completely agree with that and I have been pushing this to be
> represented as just regulators[0]. Mark B seem to dislike that
> idea [1]
And Mark is right, because what's being described is not (simply) a
voltage regultor. While it might be "just" voltage on some SoCs (for
now), it is clearly about performance (a.k.a. OPP) on others.
Kevin
next prev parent reply other threads:[~2017-05-06 21:44 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-26 10:57 [PATCH V6 0/9] PM / Domains: Implement domain performance states Viresh Kumar
2017-04-26 10:57 ` [PATCH V6 1/9] PM / OPP: Introduce "power-domain-opp" property Viresh Kumar
2017-04-28 20:48 ` Rob Herring
2017-05-03 11:29 ` Sudeep Holla
2017-05-06 9:39 ` Kevin Hilman [this message]
2017-05-08 13:47 ` Sudeep Holla
2017-05-08 7:13 ` Viresh Kumar
2017-05-08 13:57 ` Sudeep Holla
2017-05-09 5:29 ` Viresh Kumar
2017-05-06 9:58 ` Kevin Hilman
2017-05-08 4:15 ` Viresh Kumar
2017-05-08 5:36 ` Rajendra Nayak
2017-05-08 7:11 ` Viresh Kumar
2017-05-12 14:59 ` Kevin Hilman
2017-05-12 16:18 ` Viresh Kumar
2017-04-26 10:57 ` [PATCH V6 2/9] PM / Domains: Allow OPP table to be used for power-domains Viresh Kumar
2017-04-26 10:57 ` [PATCH V6 3/9] PM / QOS: Keep common notifier list for genpd constraints Viresh Kumar
2017-04-26 10:57 ` [PATCH V6 4/9] PM / QOS: Add DEV_PM_QOS_PERFORMANCE request Viresh Kumar
2017-04-26 10:57 ` [PATCH V6 5/9] PM / OPP: Add support to parse "power-domain-opp" property Viresh Kumar
2017-04-26 10:57 ` [PATCH V6 6/9] PM / OPP: Implement dev_pm_opp_of_add_table_indexed() Viresh Kumar
2017-04-26 10:57 ` [PATCH V6 7/9] PM / domain: Register PM QOS performance notifier Viresh Kumar
2017-04-26 10:57 ` [PATCH V6 8/9] PM / Domain: Add struct device to genpd Viresh Kumar
2017-04-26 10:57 ` [PATCH V6 9/9] PM / Domain: Add support to parse domain's OPP table Viresh Kumar
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=m2mvaquxxf.fsf@baylibre.com \
--to=khilman@baylibre.com \
--cc=devicetree@vger.kernel.org \
--cc=lina.iyer@linaro.org \
--cc=linaro-kernel@lists.linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=nm@ti.com \
--cc=rjw@rjwysocki.net \
--cc=rnayak@codeaurora.org \
--cc=robh@kernel.org \
--cc=sboyd@codeaurora.org \
--cc=sudeep.holla@arm.com \
--cc=ulf.hansson@linaro.org \
--cc=vincent.guittot@linaro.org \
--cc=viresh.kumar@linaro.org \
--cc=vireshk@kernel.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