Lines Matching full:dpll

3  * OMAP4-specific DPLL control functions
19 * Maximum DPLL input frequency (FINT) and output frequency (FOUT) that
20 * can supported when using the DPLL low-power mode. Frequencies are
79 * omap4_dpll_lpmode_recalc - compute DPLL low-power setting
80 * @dd: pointer to the dpll data structure
104 * omap4_dpll_regm4xen_recalc - compute DPLL rate, considering REGM4XEN bit
105 * @clk: struct clk * of the DPLL to compute the rate for
107 * Compute the output rate for the OMAP4 DPLL represented by @clk.
109 * OMAP4 ABE DPLL. Returns the DPLL's output rate (before M-dividers)
127 /* regm4xen adds a multiplier of 4 to DPLL calculations */ in omap4_dpll_regm4xen_recalc()
136 * omap4_dpll_regm4xen_round_rate - round DPLL rate, considering REGM4XEN bit
137 * @clk: struct clk * of the DPLL to round a rate for
138 * @target_rate: the desired rate of the DPLL
140 * Compute the rate that would be programmed into the DPLL hardware
143 * needed for the OMAP4 ABE DPLL. Returns the rounded rate (before
144 * M-dividers) upon success, -EINVAL if @clk is null or not a DPLL, or
163 * First try to compute the DPLL configuration for in omap4_dpll_regm4xen_round_rate()
171 * If we did not find a valid DPLL configuration, try again, but in omap4_dpll_regm4xen_round_rate()
190 * omap4_dpll_regm4xen_determine_rate - determine rate for a DPLL
194 * Determines which DPLL mode to use for reaching a desired rate.
195 * Checks whether the DPLL shall be in bypass or locked mode, and if
196 * locked, calculates the M,N values for the DPLL via round-rate.