-
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.
Merge tag 'dt-3.13-4' of git://git.infradead.org/linux-mvebu into nex…
…t/dt From Jason Cooper, mvebu dt changes for v3.13 (round 4): - mvebu - core divider clock driver dt binding and nodes * tag 'dt-3.13-4' of git://git.infradead.org/linux-mvebu: ARM: mvebu: Add the core-divider clock to Armada 370/XP ARM: mvebu: Add a 2 GHz fixed-clock Armada 370/XP ARM: mvebu: Add Core Divider clock device-tree binding
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
Documentation/devicetree/bindings/clock/mvebu-corediv-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,19 @@ | ||
* Core Divider Clock bindings for Marvell MVEBU SoCs | ||
|
||
The following is a list of provided IDs and clock names on Armada 370/XP: | ||
0 = nand (NAND clock) | ||
|
||
Required properties: | ||
- compatible : must be "marvell,armada-370-corediv-clock" | ||
- reg : must be the register address of Core Divider control register | ||
- #clock-cells : from common clock binding; shall be set to 1 | ||
- clocks : must be set to the parent's phandle | ||
|
||
Example: | ||
|
||
corediv_clk: corediv-clocks@18740 { | ||
compatible = "marvell,armada-370-corediv-clock"; | ||
reg = <0x18740 0xc>; | ||
#clock-cells = <1>; | ||
clocks = <&pll>; | ||
}; |
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