Linux 4.1.18
[linux/fpc-iii.git] / Documentation / devicetree / bindings / clock / ti / composite.txt
blob5f43c4706b0944d5b025485f41ca4bb16343c592
1 Binding for TI composite clock.
3 Binding status: Unstable - ABI compatibility may be broken in the future
5 This binding uses the common clock binding[1]. It assumes a
6 register-mapped composite clock with multiple different sub-types;
8 a multiplexer clock with multiple input clock signals or parents, one
9 of which can be selected as output, this behaves exactly as [2]
11 an adjustable clock rate divider, this behaves exactly as [3]
13 a gating function which can be used to enable and disable the output
14 clock, this behaves exactly as [4]
16 The binding must provide a list of the component clocks that shall be
17 merged to this clock. The component clocks shall be of one of the
18 "ti,*composite*-clock" types.
20 [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
21 [2] Documentation/devicetree/bindings/clock/ti/mux.txt
22 [3] Documentation/devicetree/bindings/clock/ti/divider.txt
23 [4] Documentation/devicetree/bindings/clock/ti/gate.txt
25 Required properties:
26 - compatible : shall be: "ti,composite-clock"
27 - clocks : link phandles of component clocks
28 - #clock-cells : from common clock binding; shall be set to 0.
30 Examples:
32 usb_l4_gate_ick: usb_l4_gate_ick {
33         #clock-cells = <0>;
34         compatible = "ti,composite-interface-clock";
35         clocks = <&l4_ick>;
36         ti,bit-shift = <5>;
37         reg = <0x0a10>;
40 usb_l4_div_ick: usb_l4_div_ick {
41         #clock-cells = <0>;
42         compatible = "ti,composite-divider-clock";
43         clocks = <&l4_ick>;
44         ti,bit-shift = <4>;
45         ti,max-div = <1>;
46         reg = <0x0a40>;
47         ti,index-starts-at-one;
50 usb_l4_ick: usb_l4_ick {
51         #clock-cells = <0>;
52         compatible = "ti,composite-clock";
53         clocks = <&usb_l4_gate_ick>, <&usb_l4_div_ick>;