···1414[2] Documentation/devicetree/bindings/clock/ti/dpll.txt15151616Required properties:1717-- compatible : shall be "ti,dra7-apll-clock"1717+- compatible : shall be "ti,dra7-apll-clock" or "ti,omap2-apll-clock"1818- #clock-cells : from common clock binding; shall be set to 0.1919- clocks : link phandles of parent clocks (clk-ref and clk-bypass)2020- reg : address and length of the register set for controlling the APLL.2121 It contains the information of registers in the following order:2222- "control" - contains the control register base address2323- "idlest" - contains the idlest register base address2222+ "control" - contains the control register offset2323+ "idlest" - contains the idlest register offset2424+ "autoidle" - contains the autoidle register offset (OMAP2 only)2525+- ti,clock-frequency : static clock frequency for the clock (OMAP2 only)2626+- ti,idlest-shift : bit-shift for the idlest field (OMAP2 only)2727+- ti,bit-shift : bit-shift for enable and autoidle fields (OMAP2 only)24282529Examples:2626- apll_pcie_ck: apll_pcie_ck@4a008200 {3030+ apll_pcie_ck: apll_pcie_ck {2731 #clock-cells = <0>;2832 clocks = <&apll_pcie_in_clk_mux>, <&dpll_pcie_ref_ck>;2929- reg = <0x4a00821c 0x4>, <0x4a008220 0x4>;3333+ reg = <0x021c>, <0x0220>;3034 compatible = "ti,dra7-apll-clock";3535+ };3636+3737+ apll96_ck: apll96_ck {3838+ #clock-cells = <0>;3939+ compatible = "ti,omap2-apll-clock";4040+ clocks = <&sys_ck>;4141+ ti,bit-shift = <2>;4242+ ti,idlest-shift = <8>;4343+ ti,clock-frequency = <96000000>;4444+ reg = <0x0500>, <0x0530>, <0x0520>;3145 };