-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Shawn Guo
authored and
Rafael J. Wysocki
committed
Sep 9, 2012
1 parent
78e6c27
commit 5a691a4
Showing
4 changed files
with
81 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: ec971ea5f2426a0bf9d5cca9a103743918c12978 | ||
refs/heads/master: b496dfbc94ab86f970ef0167eaabe51f930aa5fb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
* Generic OPP Interface | ||
|
||
SoCs have a standard set of tuples consisting of frequency and | ||
voltage pairs that the device will support per voltage domain. These | ||
are called Operating Performance Points or OPPs. | ||
|
||
Properties: | ||
- operating-points: An array of 2-tuples items, and each item consists | ||
of frequency and voltage like <freq-kHz vol-uV>. | ||
freq: clock frequency in kHz | ||
vol: voltage in microvolt | ||
|
||
Examples: | ||
|
||
cpu@0 { | ||
compatible = "arm,cortex-a9"; | ||
reg = <0>; | ||
next-level-cache = <&L2>; | ||
operating-points = < | ||
/* kHz uV */ | ||
792000 1100000 | ||
396000 950000 | ||
198000 850000 | ||
>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters