Path: blob/main/sys/contrib/device-tree/Bindings/c6x/clocks.txt
48378 views
C6X PLL Clock Controllers1-------------------------23This is a first-cut support for the SoC clock controllers. This is still4under development and will probably change as the common device tree5clock support is added to the kernel.67Required properties:89- compatible: "ti,c64x+pll"10May also have SoC-specific value to support SoC-specific initialization11in the driver. One of:12"ti,c6455-pll"13"ti,c6457-pll"14"ti,c6472-pll"15"ti,c6474-pll"1617- reg: base address and size of register area18- clock-frequency: input clock frequency in hz192021Optional properties:2223- ti,c64x+pll-bypass-delay: CPU cycles to delay when entering bypass mode2425- ti,c64x+pll-reset-delay: CPU cycles to delay after PLL reset2627- ti,c64x+pll-lock-delay: CPU cycles to delay after PLL frequency change2829Example:3031clock-controller@29a0000 {32compatible = "ti,c6472-pll", "ti,c64x+pll";33reg = <0x029a0000 0x200>;34clock-frequency = <25000000>;3536ti,c64x+pll-bypass-delay = <200>;37ti,c64x+pll-reset-delay = <12000>;38ti,c64x+pll-lock-delay = <80000>;39};404142