]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - Documentation/devicetree/bindings/clock/renesas,rz-cpg-clocks.txt
UBUNTU: Ubuntu-4.10.0-37.41
[mirror_ubuntu-zesty-kernel.git] / Documentation / devicetree / bindings / clock / renesas,rz-cpg-clocks.txt
CommitLineData
a665962e
WS
1* Renesas RZ Clock Pulse Generator (CPG)
2
3The CPG generates core clocks for the RZ SoCs. It includes the PLL, variable
4CPU and GPU clocks, and several fixed ratio dividers.
f04b486d
GU
5The CPG also provides a Clock Domain for SoC devices, in combination with the
6CPG Module Stop (MSTP) Clocks.
a665962e
WS
7
8Required Properties:
9
10 - compatible: Must be one of
11 - "renesas,r7s72100-cpg-clocks" for the r7s72100 CPG
a431c1fa 12 and "renesas,rz-cpg-clocks" as a fallback.
a665962e
WS
13 - reg: Base address and length of the memory resource used by the CPG
14 - clocks: References to possible parent clocks. Order must match clock modes
15 in the datasheet. For the r7s72100, this is extal, usb_x1.
16 - #clock-cells: Must be 1
17 - clock-output-names: The names of the clocks. Supported clocks are "pll",
18 "i", and "g"
f04b486d 19 - #power-domain-cells: Must be 0
a665962e 20
f04b486d
GU
21SoC devices that are part of the CPG/MSTP Clock Domain and can be power-managed
22through an MSTP clock should refer to the CPG device node in their
23"power-domains" property, as documented by the generic PM domain bindings in
24Documentation/devicetree/bindings/power/power_domain.txt.
a665962e 25
f04b486d
GU
26
27Examples
28--------
29
30 - CPG device node:
a665962e
WS
31
32 cpg_clocks: cpg_clocks@fcfe0000 {
33 #clock-cells = <1>;
34 compatible = "renesas,r7s72100-cpg-clocks",
35 "renesas,rz-cpg-clocks";
36 reg = <0xfcfe0000 0x18>;
37 clocks = <&extal_clk>, <&usb_x1_clk>;
38 clock-output-names = "pll", "i", "g";
f04b486d
GU
39 #power-domain-cells = <0>;
40 };
41
42
43 - CPG/MSTP Clock Domain member device node:
44
45 mtu2: timer@fcff0000 {
46 compatible = "renesas,mtu2-r7s72100", "renesas,mtu2";
47 reg = <0xfcff0000 0x400>;
48 interrupts = <0 107 IRQ_TYPE_LEVEL_HIGH>;
49 interrupt-names = "tgi0a";
50 clocks = <&mstp3_clks R7S72100_CLK_MTU2>;
51 clock-names = "fck";
52 power-domains = <&cpg_clocks>;
53 status = "disabled";
a665962e 54 };