0001 Binding for a ST multiplexed clock driver.
0002
0003 This binding supports only simple indexed multiplexers, it does not
0004 support table based parent index to hardware value translations.
0005
0006 This binding uses the common clock binding[1].
0007
0008 [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
0009
0010 Required properties:
0011
0012 - compatible : shall be:
0013 "st,stih407-clkgen-a9-mux"
0014
0015 - #clock-cells : from common clock binding; shall be set to 0.
0016
0017 - reg : A Base address and length of the register set.
0018
0019 - clocks : from common clock binding
0020
0021 Example:
0022
0023 clk_m_a9: clk-m-a9@92b0000 {
0024 #clock-cells = <0>;
0025 compatible = "st,stih407-clkgen-a9-mux";
0026 reg = <0x92b0000 0x10000>;
0027
0028 clocks = <&clockgen_a9_pll 0>,
0029 <&clockgen_a9_pll 0>,
0030 <&clk_s_c0_flexgen 13>,
0031 <&clk_m_a9_ext2f_div2>;
0032 };