-
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.
yaml --- r: 350732 b: refs/heads/master c: eb8b8f2 h: refs/heads/master v: v3
- Loading branch information
Barry Song
authored and
Mike Turquette
committed
Jan 18, 2013
1 parent
543122c
commit 5b3a8f8
Showing
4 changed files
with
184 additions
and
127 deletions.
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: 38a8b096f86dea54cc64f4daa3402d0c4f2df43e | ||
refs/heads/master: eb8b8f2e7164b819ca35a3d6240198fdb98d0ef3 |
73 changes: 73 additions & 0 deletions
73
trunk/Documentation/devicetree/bindings/clock/prima2-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,73 @@ | ||
* Clock bindings for CSR SiRFprimaII | ||
|
||
Required properties: | ||
- compatible: Should be "sirf,prima2-clkc" | ||
- reg: Address and length of the register set | ||
- interrupts: Should contain clock controller interrupt | ||
- #clock-cells: Should be <1> | ||
|
||
The clock consumer should specify the desired clock by having the clock | ||
ID in its "clocks" phandle cell. The following is a full list of prima2 | ||
clocks and IDs. | ||
|
||
Clock ID | ||
--------------------------- | ||
rtc 0 | ||
osc 1 | ||
pll1 2 | ||
pll2 3 | ||
pll3 4 | ||
mem 5 | ||
sys 6 | ||
security 7 | ||
dsp 8 | ||
gps 9 | ||
mf 10 | ||
io 11 | ||
cpu 12 | ||
uart0 13 | ||
uart1 14 | ||
uart2 15 | ||
tsc 16 | ||
i2c0 17 | ||
i2c1 18 | ||
spi0 19 | ||
spi1 20 | ||
pwmc 21 | ||
efuse 22 | ||
pulse 23 | ||
dmac0 24 | ||
dmac1 25 | ||
nand 26 | ||
audio 27 | ||
usp0 28 | ||
usp1 29 | ||
usp2 30 | ||
vip 31 | ||
gfx 32 | ||
mm 33 | ||
lcd 34 | ||
vpp 35 | ||
mmc01 36 | ||
mmc23 37 | ||
mmc45 38 | ||
usbpll 39 | ||
usb0 40 | ||
usb1 41 | ||
|
||
Examples: | ||
|
||
clks: clock-controller@88000000 { | ||
compatible = "sirf,prima2-clkc"; | ||
reg = <0x88000000 0x1000>; | ||
interrupts = <3>; | ||
#clock-cells = <1>; | ||
}; | ||
|
||
i2c0: i2c@b00e0000 { | ||
cell-index = <0>; | ||
compatible = "sirf,prima2-i2c"; | ||
reg = <0xb00e0000 0x10000>; | ||
interrupts = <24>; | ||
clocks = <&clks 17>; | ||
}; |
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
Oops, something went wrong.