1 Ingenic SoC CGU binding
3 The CGU in an Ingenic SoC provides all the clocks generated on-chip. It
4 typically includes a variety of PLLs, multiplexers, dividers & gates in order
5 to provide many different clock signals derived from only 2 external source
9 - compatible : Should be one of:
15 - reg : The address & length of the CGU registers.
16 - clocks : List of phandle & clock specifiers for clocks external to the CGU.
17 Two such external clocks should be specified - first the external crystal
18 "ext" and second the RTC clock source "rtc".
19 - clock-names : List of name strings for the external clocks.
20 - #clock-cells: Should be 1.
21 Clock consumers specify this argument to identify a clock. The valid values
22 may be found in <dt-bindings/clock/<soctype>-cgu.h>.
24 Example SoC include file:
28 compatible = "ingenic,jz4740-cgu";
29 reg = <0x10000000 0x100>;
33 uart0: serial@10030000 {
34 clocks = <&cgu JZ4740_CLK_UART0>;
42 compatible = "fixed-clock";
44 clock-frequency = <12000000>;
48 compatible = "fixed-clock";
50 clock-frequency = <32768>;
54 clocks = <&ext> <&rtc>;
55 clock-names: "ext", "rtc";