0001 Binding for the HSDK Generic PLL clock
0002
0003 This binding uses the common clock binding[1].
0004
0005 [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
0006
0007 Required properties:
0008 - compatible: should be "snps,hsdk-<name>-pll-clock"
0009 "snps,hsdk-core-pll-clock"
0010 "snps,hsdk-gp-pll-clock"
0011 "snps,hsdk-hdmi-pll-clock"
0012 - reg : should contain base register location and length.
0013 - clocks: shall be the input parent clock phandle for the PLL.
0014 - #clock-cells: from common clock binding; Should always be set to 0.
0015
0016 Example:
0017 input_clk: input-clk {
0018 clock-frequency = <33333333>;
0019 compatible = "fixed-clock";
0020 #clock-cells = <0>;
0021 };
0022
0023 cpu_clk: cpu-clk@0 {
0024 compatible = "snps,hsdk-core-pll-clock";
0025 reg = <0x00 0x10>;
0026 #clock-cells = <0>;
0027 clocks = <&input_clk>;
0028 };