Merge tag 'for-linus' of git://linux-c6x.org/git/projects/linux-c6x-upstreaming
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / clock / amlogic,gxbb-clkc.txt
1 * Amlogic GXBB Clock and Reset Unit
2
3 The Amlogic GXBB clock controller generates and supplies clock to various
4 controllers within the SoC.
5
6 Required Properties:
7
8 - compatible: should be "amlogic,gxbb-clkc" for GXBB SoC,
9               or "amlogic,gxl-clkc" for GXL and GXM SoC.
10 - reg: physical base address of the clock controller and length of memory
11        mapped region.
12
13 - #clock-cells: should be 1.
14
15 Each clock is assigned an identifier and client nodes can use this identifier
16 to specify the clock which they consume. All available clocks are defined as
17 preprocessor macros in the dt-bindings/clock/gxbb-clkc.h header and can be
18 used in device tree sources.
19
20 Example: Clock controller node:
21
22         clkc: clock-controller@c883c000 {
23                 #clock-cells = <1>;
24                 compatible = "amlogic,gxbb-clkc";
25                 reg = <0x0 0xc883c000 0x0 0x3db>;
26         };
27
28 Example: UART controller node that consumes the clock generated by the clock
29   controller:
30
31         uart_AO: serial@c81004c0 {
32                 compatible = "amlogic,meson-uart";
33                 reg = <0xc81004c0 0x14>;
34                 interrupts = <0 90 1>;
35                 clocks = <&clkc CLKID_CLK81>;
36                 status = "disabled";
37         };