1Binding for a ST multiplexed clock driver.
2
3This binding supports only simple indexed multiplexers, it does not
4support table based parent index to hardware value translations.
5
6This binding uses the common clock binding[1].
7
8[1] Documentation/devicetree/bindings/clock/clock-bindings.txt
9
10Required 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
21Example:
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	};
33