-
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
Gregory CLEMENT
authored and
Mike Turquette
committed
Apr 12, 2013
1 parent
840470f
commit 229a663
Showing
4 changed files
with
63 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: fb72a0590b770f7da6a02bde6b8a147a3d9f6168 | ||
refs/heads/master: 79b16641efabd14944dbfc2fde2ae1e8ae8413bc |
24 changes: 24 additions & 0 deletions
24
trunk/Documentation/devicetree/bindings/clock/fixed-factor-clock.txt
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,24 @@ | ||
Binding for simple fixed factor rate clock sources. | ||
|
||
This binding uses the common clock binding[1]. | ||
|
||
[1] Documentation/devicetree/bindings/clock/clock-bindings.txt | ||
|
||
Required properties: | ||
- compatible : shall be "fixed-factor-clock". | ||
- #clock-cells : from common clock binding; shall be set to 0. | ||
- clock-div: fixed divider. | ||
- clock-mult: fixed multiplier. | ||
- clocks: parent clock. | ||
|
||
Optional properties: | ||
- clock-output-names : From common clock binding. | ||
|
||
Example: | ||
clock { | ||
compatible = "fixed-factor-clock"; | ||
clocks = <&parentclk>; | ||
#clock-cells = <0>; | ||
div = <2>; | ||
mult = <1>; | ||
}; |
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