Merge tag 'cris-for-4.9' of git://git.kernel.org/pub/scm/linux/kernel/git/jesper...
[cascardo/linux.git] / Documentation / devicetree / bindings / clock / st / st,clkgen-mux.txt
1 Binding for a ST multiplexed clock driver.
2
3 This binding supports only simple indexed multiplexers, it does not
4 support table based parent index to hardware value translations.
5
6 This binding uses the common clock binding[1].
7
8 [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
9
10 Required properties:
11
12 - compatible : shall be:
13         "st,stih407-clkgen-a9-mux"
14
15 - #clock-cells : from common clock binding; shall be set to 0.
16
17 - reg : A Base address and length of the register set.
18
19 - clocks : from common clock binding
20
21 Example:
22
23         clk_m_a9: clk-m-a9@92b0000 {
24                 #clock-cells = <0>;
25                 compatible = "st,stih407-clkgen-a9-mux";
26                 reg = <0x92b0000 0x10000>;
27
28                 clocks = <&clockgen_a9_pll 0>,
29                          <&clockgen_a9_pll 0>,
30                          <&clk_s_c0_flexgen 13>,
31                          <&clk_m_a9_ext2f_div2>;
32         };