···11+Binding for Texas Instruments ADPLL clock.22+33+Binding status: Unstable - ABI compatibility may be broken in the future44+55+This binding uses the common clock binding[1]. It assumes a66+register-mapped ADPLL with two to three selectable input clocks77+and three to four children.88+99+[1] Documentation/devicetree/bindings/clock/clock-bindings.txt1010+1111+Required properties:1212+- compatible : shall be one of "ti,dm814-adpll-s-clock" or1313+ "ti,dm814-adpll-lj-clock" depending on the type of the ADPLL1414+- #clock-cells : from common clock binding; shall be set to 1.1515+- clocks : link phandles of parent clocks clkinp and clkinpulow, note1616+ that the adpll-s-clock also has an optional clkinphif1717+- reg : address and length of the register set for controlling the ADPLL.1818+1919+Examples:2020+ adpll_mpu_ck: adpll@40 {2121+ #clock-cells = <1>;2222+ compatible = "ti,dm814-adpll-s-clock";2323+ reg = <0x40 0x40>;2424+ clocks = <&devosc_ck &devosc_ck &devosc_ck>;2525+ clock-names = "clkinp", "clkinpulow", "clkinphif";2626+ clock-output-names = "481c5040.adpll.dcoclkldo",2727+ "481c5040.adpll.clkout",2828+ "481c5040.adpll.clkoutx2",2929+ "481c5040.adpll.clkouthif";3030+ };3131+3232+ adpll_dsp_ck: adpll@80 {3333+ #clock-cells = <1>;3434+ compatible = "ti,dm814-adpll-lj-clock";3535+ reg = <0x80 0x30>;3636+ clocks = <&devosc_ck &devosc_ck>;3737+ clock-names = "clkinp", "clkinpulow";3838+ clock-output-names = "481c5080.adpll.dcoclkldo",3939+ "481c5080.adpll.clkout",4040+ "481c5080.adpll.clkoutldo";4141+ };
···11+config COMMON_CLK_TI_ADPLL22+ tristate "Clock driver for dm814x ADPLL"33+ depends on ARCH_OMAP2PLUS || COMPILE_TEST44+ default y if SOC_TI81XX55+ ---help---66+ ADPLL clock driver for the dm814x SoC using common clock framework.