Merge remote-tracking branches 'regulator/fix/88pm800', 'regulator/fix/max8973',...
[linux-drm-fsl-dcu.git] / Documentation / devicetree / bindings / clock / renesas,rz-cpg-clocks.txt
1 * Renesas RZ Clock Pulse Generator (CPG)
2
3 The CPG generates core clocks for the RZ SoCs. It includes the PLL, variable
4 CPU and GPU clocks, and several fixed ratio dividers.
5
6 Required Properties:
7
8   - compatible: Must be one of
9     - "renesas,r7s72100-cpg-clocks" for the r7s72100 CPG
10     and "renesas,rz-cpg-clocks" as a fallback.
11   - reg: Base address and length of the memory resource used by the CPG
12   - clocks: References to possible parent clocks. Order must match clock modes
13     in the datasheet. For the r7s72100, this is extal, usb_x1.
14   - #clock-cells: Must be 1
15   - clock-output-names: The names of the clocks. Supported clocks are "pll",
16     "i", and "g"
17
18
19 Example
20 -------
21
22         cpg_clocks: cpg_clocks@fcfe0000 {
23                 #clock-cells = <1>;
24                 compatible = "renesas,r7s72100-cpg-clocks",
25                              "renesas,rz-cpg-clocks";
26                 reg = <0xfcfe0000 0x18>;
27                 clocks = <&extal_clk>, <&usb_x1_clk>;
28                 clock-output-names = "pll", "i", "g";
29         };