blob: bb51a33a1fbfbc9798be9800c1b865dda201de21 [file] [log] [blame]
Wolfram Sanga6659622014-03-07 17:00:37 +01001* 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.
Geert Uytterhoevenf04b4862015-08-04 14:28:06 +02005The CPG also provides a Clock Domain for SoC devices, in combination with the
6CPG Module Stop (MSTP) Clocks.
Wolfram Sanga6659622014-03-07 17:00:37 +01007
8Required Properties:
9
10 - compatible: Must be one of
11 - "renesas,r7s72100-cpg-clocks" for the r7s72100 CPG
Geert Uytterhoevena431c1f2015-05-28 11:33:33 +020012 and "renesas,rz-cpg-clocks" as a fallback.
Wolfram Sanga6659622014-03-07 17:00:37 +010013 - 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"
Geert Uytterhoevenf04b4862015-08-04 14:28:06 +020019 - #power-domain-cells: Must be 0
20
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.
Wolfram Sanga6659622014-03-07 17:00:37 +010025
26
Geert Uytterhoevenf04b4862015-08-04 14:28:06 +020027Examples
28--------
29
30 - CPG device node:
Wolfram Sanga6659622014-03-07 17:00:37 +010031
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";
Geert Uytterhoevenf04b4862015-08-04 14:28:06 +020039 #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";
Wolfram Sanga6659622014-03-07 17:00:37 +010054 };