1 // SPDX-License-Identifier: GPL-2.0-only
3 * OMAP4-specific DPLL control functions
5 * Copyright (C) 2011 Texas Instruments, Inc.
9 #include <linux/kernel.h>
10 #include <linux/errno.h>
11 #include <linux/clk.h>
13 #include <linux/bitops.h>
14 #include <linux/clk/ti.h>
19 * Maximum DPLL input frequency (FINT) and output frequency (FOUT) that
20 * can supported when using the DPLL low-power mode. Frequencies are
21 * defined in OMAP4430/60 Public TRM section 3.6.3.3.2 "Enable Control,
22 * Status, and Low-Power Operation Mode".
24 #define OMAP4_DPLL_LP_FINT_MAX 1000000
25 #define OMAP4_DPLL_LP_FOUT_MAX 100000000
28 * Bitfield declarations
30 #define OMAP4430_DPLL_CLKOUT_GATE_CTRL_MASK BIT(8)
31 #define OMAP4430_DPLL_CLKOUTX2_GATE_CTRL_MASK BIT(10)
32 #define OMAP4430_DPLL_REGM4XEN_MASK BIT(11)
34 /* Static rate multiplier for OMAP4 REGM4XEN clocks */
35 #define OMAP4430_REGM4XEN_MULT 4
37 static void omap4_dpllmx_allow_gatectrl(struct clk_hw_omap
*clk
)
45 mask
= clk
->flags
& CLOCK_CLKOUTX2
?
46 OMAP4430_DPLL_CLKOUTX2_GATE_CTRL_MASK
:
47 OMAP4430_DPLL_CLKOUT_GATE_CTRL_MASK
;
49 v
= ti_clk_ll_ops
->clk_readl(&clk
->clksel_reg
);
50 /* Clear the bit to allow gatectrl */
52 ti_clk_ll_ops
->clk_writel(v
, &clk
->clksel_reg
);
55 static void omap4_dpllmx_deny_gatectrl(struct clk_hw_omap
*clk
)
63 mask
= clk
->flags
& CLOCK_CLKOUTX2
?
64 OMAP4430_DPLL_CLKOUTX2_GATE_CTRL_MASK
:
65 OMAP4430_DPLL_CLKOUT_GATE_CTRL_MASK
;
67 v
= ti_clk_ll_ops
->clk_readl(&clk
->clksel_reg
);
68 /* Set the bit to deny gatectrl */
70 ti_clk_ll_ops
->clk_writel(v
, &clk
->clksel_reg
);
73 const struct clk_hw_omap_ops clkhwops_omap4_dpllmx
= {
74 .allow_idle
= omap4_dpllmx_allow_gatectrl
,
75 .deny_idle
= omap4_dpllmx_deny_gatectrl
,
79 * omap4_dpll_lpmode_recalc - compute DPLL low-power setting
80 * @dd: pointer to the dpll data structure
82 * Calculates if low-power mode can be enabled based upon the last
83 * multiplier and divider values calculated. If low-power mode can be
84 * enabled, then the bit to enable low-power mode is stored in the
85 * last_rounded_lpmode variable. This implementation is based upon the
86 * criteria for enabling low-power mode as described in the OMAP4430/60
87 * Public TRM section 3.6.3.3.2 "Enable Control, Status, and Low-Power
90 static void omap4_dpll_lpmode_recalc(struct dpll_data
*dd
)
94 fint
= clk_hw_get_rate(dd
->clk_ref
) / (dd
->last_rounded_n
+ 1);
95 fout
= fint
* dd
->last_rounded_m
;
97 if ((fint
< OMAP4_DPLL_LP_FINT_MAX
) && (fout
< OMAP4_DPLL_LP_FOUT_MAX
))
98 dd
->last_rounded_lpmode
= 1;
100 dd
->last_rounded_lpmode
= 0;
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.
108 * Takes the REGM4XEN bit into consideration, which is needed for the
109 * OMAP4 ABE DPLL. Returns the DPLL's output rate (before M-dividers)
110 * upon success, or 0 upon error.
112 unsigned long omap4_dpll_regm4xen_recalc(struct clk_hw
*hw
,
113 unsigned long parent_rate
)
115 struct clk_hw_omap
*clk
= to_clk_hw_omap(hw
);
118 struct dpll_data
*dd
;
120 if (!clk
|| !clk
->dpll_data
)
125 rate
= omap2_get_dpll_rate(clk
);
127 /* regm4xen adds a multiplier of 4 to DPLL calculations */
128 v
= ti_clk_ll_ops
->clk_readl(&dd
->control_reg
);
129 if (v
& OMAP4430_DPLL_REGM4XEN_MASK
)
130 rate
*= OMAP4430_REGM4XEN_MULT
;
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
141 * for @clk if set_rate() were to be provided with the rate
142 * @target_rate. Takes the REGM4XEN bit into consideration, which is
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
145 * ~0 if an error occurred in omap2_dpll_round_rate().
147 long omap4_dpll_regm4xen_round_rate(struct clk_hw
*hw
,
148 unsigned long target_rate
,
149 unsigned long *parent_rate
)
151 struct clk_hw_omap
*clk
= to_clk_hw_omap(hw
);
152 struct dpll_data
*dd
;
155 if (!clk
|| !clk
->dpll_data
)
160 dd
->last_rounded_m4xen
= 0;
163 * First try to compute the DPLL configuration for
164 * target rate without using the 4X multiplier.
166 r
= omap2_dpll_round_rate(hw
, target_rate
, NULL
);
171 * If we did not find a valid DPLL configuration, try again, but
172 * this time see if using the 4X multiplier can help. Enabling the
173 * 4X multiplier is equivalent to dividing the target rate by 4.
175 r
= omap2_dpll_round_rate(hw
, target_rate
/ OMAP4430_REGM4XEN_MULT
,
180 dd
->last_rounded_rate
*= OMAP4430_REGM4XEN_MULT
;
181 dd
->last_rounded_m4xen
= 1;
184 omap4_dpll_lpmode_recalc(dd
);
186 return dd
->last_rounded_rate
;
190 * omap4_dpll_regm4xen_determine_rate - determine rate for a DPLL
191 * @hw: pointer to the clock to determine rate for
192 * @req: target rate request
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.
197 * Returns 0 on success and a negative error value otherwise.
199 int omap4_dpll_regm4xen_determine_rate(struct clk_hw
*hw
,
200 struct clk_rate_request
*req
)
202 struct clk_hw_omap
*clk
= to_clk_hw_omap(hw
);
203 struct dpll_data
*dd
;
212 if (clk_hw_get_rate(dd
->clk_bypass
) == req
->rate
&&
213 (dd
->modes
& (1 << DPLL_LOW_POWER_BYPASS
))) {
214 req
->best_parent_hw
= dd
->clk_bypass
;
216 req
->rate
= omap4_dpll_regm4xen_round_rate(hw
, req
->rate
,
217 &req
->best_parent_rate
);
218 req
->best_parent_hw
= dd
->clk_ref
;
221 req
->best_parent_rate
= req
->rate
;