linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* Device tree binding for DVFS table
@ 2012-07-11 13:08 함명주
  2012-07-11 13:49 ` Peter De Schrijver
  2012-07-11 13:49 ` Peter De Schrijver
  0 siblings, 2 replies; 30+ messages in thread
From: 함명주 @ 2012-07-11 13:08 UTC (permalink / raw)
  To: linux-arm-kernel

> Hi,
>
> I am working on DT binding for Tegra DVFS.
>
> For Tegra, DVFS node mainly consists of frequency and voltage pairs. 
> Frequency in the pair may change for different process. E.g. for process 
> 1 CPU clock frequency could be 900MHz at 1V while for process 2 it could 
> be 1GHz at 1V.
> Tegra uses vendor specific ids to identify the correct frequency table.

Hello,

It seems that in the example, the values in "voltage-array" and
"frequencies" are switched.

Anyway, what about SoCs that reads information from IEM (or any other module)
 to measure gate delays or some other value to set the appriorate voltage values
 for every possible frequency? I remember some of Exynos SoCs have been doing
 it; dynamically measure the characteristics at boot-up time and apply voltages
 accordingly; they couldn't identify it based on the chip-id or simply by reading
 a single register.


Cheers!
MyungJoo.

> 
> Following is the proposed binding for voltage and frequency tables used 
> in DVFS. Looking for comments/suggestions to make it generic.

^ permalink raw reply	[flat|nested] 30+ messages in thread
* Device tree binding for DVFS table
@ 2012-07-11 12:56 Prashant Gaikwad
  2012-07-11 14:03 ` Rob Herring
  2012-07-18 17:08 ` Shawn Guo
  0 siblings, 2 replies; 30+ messages in thread
From: Prashant Gaikwad @ 2012-07-11 12:56 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

I am working on DT binding for Tegra DVFS.

For Tegra, DVFS node mainly consists of frequency and voltage pairs. 
Frequency in the pair may change for different process. E.g. for process 
1 CPU clock frequency could be 900MHz at 1V while for process 2 it could 
be 1GHz at 1V.
Tegra uses vendor specific ids to identify the correct frequency table.

Following is the proposed binding for voltage and frequency tables used 
in DVFS. Looking for comments/suggestions to make it generic.

=======DVFS table node===================
This node defines the voltage configuration for the DVFS which includes 
the regulator and voltage array.

Required properties:

reg_id : <regulator phandle>;
voltage-table : <voltage array, values in mV>;

#address-cells and #size-cells : To identify correct frequency table 
using process id (or some other vendor specific way).

========Frequency table node===============

This node defines frequency configuration for the device DVFS.

Required properties:

In device node need a reference to the DVFS table node.

dvfs : the phandle for the DVFS table node

frequency-table at n
        reg = <n>; dependent on address-cells and size-cells in DVFS 
table node.
        frequencies = <frequency array, values in MHz>;
}

Example:
-------------------------------------------------------------------------

cpu-dvfs-table : dvfs-table {
               compatible = "nvidia,tegra30-dvfs-table";
               reg_id = <&sm0>;
               #address-cells = <1>;
               #size-cells = <0>;
               voltage-array = <750 775 800 825 850 875 900 925 950 975 
1000 1025 1050 1100 1125>;
};

device {
              dvfs = <&cpu-dvfs-table>;
              frequency-table at 102 {
                       reg = <0x102>;
                       frequencies = <314 314 314 456 456 456 608 608 
608 760 817 817 912 1000>;
              };
              frequency-table at 002 {
                       reg = <0x002>;
                       frequencies = <598 598 750 750 893 893 1000>;
              };
};

Thanks & Regards,
Prashant G

^ permalink raw reply	[flat|nested] 30+ messages in thread

end of thread, other threads:[~2012-07-18 21:19 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-11 13:08 Device tree binding for DVFS table 함명주
2012-07-11 13:49 ` Peter De Schrijver
2012-07-11 13:49 ` Peter De Schrijver
2012-07-12  4:22   ` Prashant Gaikwad
  -- strict thread matches above, loose matches on Subject: below --
2012-07-11 12:56 Prashant Gaikwad
2012-07-11 14:03 ` Rob Herring
2012-07-11 14:44   ` Mark Brown
2012-07-11 20:04     ` Mike Turquette
2012-07-12  4:14       ` Prashant Gaikwad
2012-07-12 14:10       ` Peter De Schrijver
2012-07-12 17:10         ` Mike Turquette
2012-07-12 17:15           ` Mark Brown
2012-07-13 10:34           ` Peter De Schrijver
2012-07-13 17:25             ` Mike Turquette
2012-07-12  4:17     ` Prashant Gaikwad
2012-07-12 15:23       ` Mark Brown
2012-07-12 17:01       ` Mike Turquette
2012-07-12  8:19     ` Peter De Schrijver
2012-07-12  4:08   ` Prashant Gaikwad
2012-07-13 18:30     ` Prashant Gaikwad
2012-07-15 21:40       ` Mark Brown
2012-07-15 23:42     ` Rob Herring
2012-07-16 18:36       ` Turquette, Mike
2012-07-17 12:37         ` Prashant Gaikwad
2012-07-17 13:20           ` Mark Brown
2012-07-17 14:22             ` Prashant Gaikwad
2012-07-17 14:37               ` Mark Brown
2012-07-18 12:46                 ` Prashant Gaikwad
2012-07-18 21:19                   ` Mark Brown
2012-07-18 17:08 ` Shawn Guo

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).