blob: 4f0cc19df5059fe6a2449459193f133fd54ce8fb [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Tom Warren795f9d72013-01-23 14:01:01 -07002/*
Thierry Redingce7eb162019-04-15 11:32:25 +02003 * Copyright (c) 2010-2019, NVIDIA CORPORATION. All rights reserved.
Tom Warren795f9d72013-01-23 14:01:01 -07004 */
5
6/* Tegra SoC common clock control functions */
7
Simon Glass15023922017-06-12 06:21:39 -06008#include <div64.h>
9#include <dm.h>
Simon Glasscd4b59b2015-06-05 14:39:36 -060010#include <errno.h>
Simon Glass0f2af882020-05-10 11:40:05 -060011#include <log.h>
Simon Glass495a5dc2019-11-14 12:57:30 -070012#include <time.h>
Tom Warren795f9d72013-01-23 14:01:01 -070013#include <asm/io.h>
14#include <asm/arch/clock.h>
15#include <asm/arch/tegra.h>
Stephen Warren8d1fb312015-01-19 16:25:52 -070016#include <asm/arch-tegra/ap.h>
Tom Warren795f9d72013-01-23 14:01:01 -070017#include <asm/arch-tegra/clk_rst.h>
Simon Glasscd4b59b2015-06-05 14:39:36 -060018#include <asm/arch-tegra/pmc.h>
Tom Warren795f9d72013-01-23 14:01:01 -070019#include <asm/arch-tegra/timer.h>
Simon Glassdbd79542020-05-10 11:40:11 -060020#include <linux/delay.h>
Tom Warren795f9d72013-01-23 14:01:01 -070021
22/*
23 * This is our record of the current clock rate of each clock. We don't
24 * fill all of these in since we are only really interested in clocks which
25 * we use as parents.
26 */
27static unsigned pll_rate[CLOCK_ID_COUNT];
28
29/*
Svyatoslav Ryhel7f4ab332023-02-01 10:53:01 +020030 * The oscillator frequency is fixed to one of seven set values. Based on this
Tom Warren795f9d72013-01-23 14:01:01 -070031 * the other clocks are set up appropriately.
32 */
33static unsigned osc_freq[CLOCK_OSC_FREQ_COUNT] = {
34 13000000,
Svyatoslav Ryhel7f4ab332023-02-01 10:53:01 +020035 16800000,
36 0,
37 0,
Tom Warren795f9d72013-01-23 14:01:01 -070038 19200000,
Tom Warren27bce712015-06-22 13:03:44 -070039 38400000,
Svyatoslav Ryhel7f4ab332023-02-01 10:53:01 +020040 0,
41 0,
42 12000000,
Tom Warren27bce712015-06-22 13:03:44 -070043 48000000,
Svyatoslav Ryhel7f4ab332023-02-01 10:53:01 +020044 0,
45 0,
46 26000000,
Tom Warren795f9d72013-01-23 14:01:01 -070047};
48
49/* return 1 if a peripheral ID is in range */
50#define clock_type_id_isvalid(id) ((id) >= 0 && \
51 (id) < CLOCK_TYPE_COUNT)
52
53char pllp_valid = 1; /* PLLP is set up correctly */
54
55/* return 1 if a periphc_internal_id is in range */
56#define periphc_internal_id_isvalid(id) ((id) >= 0 && \
57 (id) < PERIPHC_COUNT)
58
59/* number of clock outputs of a PLL */
60static const u8 pll_num_clkouts[] = {
61 1, /* PLLC */
62 1, /* PLLM */
63 4, /* PLLP */
64 1, /* PLLA */
65 0, /* PLLU */
66 0, /* PLLD */
67};
68
69int clock_get_osc_bypass(void)
70{
71 struct clk_rst_ctlr *clkrst =
72 (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
73 u32 reg;
74
75 reg = readl(&clkrst->crc_osc_ctrl);
76 return (reg & OSC_XOBP_MASK) >> OSC_XOBP_SHIFT;
77}
78
79/* Returns a pointer to the registers of the given pll */
80static struct clk_pll *get_pll(enum clock_id clkid)
81{
82 struct clk_rst_ctlr *clkrst =
83 (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
84
85 assert(clock_id_is_pll(clkid));
Simon Glass6017b9a2015-04-14 21:03:32 -060086 if (clkid >= (enum clock_id)TEGRA_CLK_PLLS) {
Simon Glass31689872015-06-05 14:39:37 -060087 debug("%s: Invalid PLL %d\n", __func__, clkid);
Simon Glass6017b9a2015-04-14 21:03:32 -060088 return NULL;
89 }
Tom Warren795f9d72013-01-23 14:01:01 -070090 return &clkrst->crc_pll[clkid];
91}
92
Simon Glass6017b9a2015-04-14 21:03:32 -060093__weak struct clk_pll_simple *clock_get_simple_pll(enum clock_id clkid)
94{
95 return NULL;
96}
97
Tom Warren795f9d72013-01-23 14:01:01 -070098int clock_ll_read_pll(enum clock_id clkid, u32 *divm, u32 *divn,
99 u32 *divp, u32 *cpcon, u32 *lfcon)
100{
101 struct clk_pll *pll = get_pll(clkid);
Tom Warrena8480ef2015-06-25 09:50:44 -0700102 struct clk_pll_info *pllinfo = &tegra_pll_info_table[clkid];
Tom Warren795f9d72013-01-23 14:01:01 -0700103 u32 data;
104
105 assert(clkid != CLOCK_ID_USB);
106
107 /* Safety check, adds to code size but is small */
108 if (!clock_id_is_pll(clkid) || clkid == CLOCK_ID_USB)
109 return -1;
110 data = readl(&pll->pll_base);
Tom Warrena8480ef2015-06-25 09:50:44 -0700111 *divm = (data >> pllinfo->m_shift) & pllinfo->m_mask;
112 *divn = (data >> pllinfo->n_shift) & pllinfo->n_mask;
113 *divp = (data >> pllinfo->p_shift) & pllinfo->p_mask;
Tom Warren795f9d72013-01-23 14:01:01 -0700114 data = readl(&pll->pll_misc);
Tom Warrena8480ef2015-06-25 09:50:44 -0700115 /* NOTE: On T210, cpcon/lfcon no longer exist, moved to KCP/KVCO */
116 *cpcon = (data >> pllinfo->kcp_shift) & pllinfo->kcp_mask;
117 *lfcon = (data >> pllinfo->kvco_shift) & pllinfo->kvco_mask;
118
Tom Warren795f9d72013-01-23 14:01:01 -0700119 return 0;
120}
121
122unsigned long clock_start_pll(enum clock_id clkid, u32 divm, u32 divn,
123 u32 divp, u32 cpcon, u32 lfcon)
124{
Simon Glass31689872015-06-05 14:39:37 -0600125 struct clk_pll *pll = NULL;
Tom Warrena8480ef2015-06-25 09:50:44 -0700126 struct clk_pll_info *pllinfo = &tegra_pll_info_table[clkid];
Simon Glassb6ba3fb2015-08-10 07:14:36 -0600127 struct clk_pll_simple *simple_pll = NULL;
Simon Glass6017b9a2015-04-14 21:03:32 -0600128 u32 misc_data, data;
Tom Warren795f9d72013-01-23 14:01:01 -0700129
Svyatoslav Ryhelc93b5182023-07-03 18:06:54 +0300130 if (clkid < (enum clock_id)TEGRA_CLK_PLLS)
Simon Glass31689872015-06-05 14:39:37 -0600131 pll = get_pll(clkid);
Svyatoslav Ryhelc93b5182023-07-03 18:06:54 +0300132 else
Simon Glassb6ba3fb2015-08-10 07:14:36 -0600133 simple_pll = clock_get_simple_pll(clkid);
Svyatoslav Ryhelc93b5182023-07-03 18:06:54 +0300134
135 if (!simple_pll && !pll) {
136 log_err("Unknown PLL id %d\n", clkid);
137 return 0;
Simon Glassb6ba3fb2015-08-10 07:14:36 -0600138 }
Simon Glass31689872015-06-05 14:39:37 -0600139
Tom Warren795f9d72013-01-23 14:01:01 -0700140 /*
Tom Warrena8480ef2015-06-25 09:50:44 -0700141 * pllinfo has the m/n/p and kcp/kvco mask and shift
142 * values for all of the PLLs used in U-Boot, with any
143 * SoC differences accounted for.
Simon Glassb6ba3fb2015-08-10 07:14:36 -0600144 *
145 * Preserve EN_LOCKDET, etc.
Tom Warren795f9d72013-01-23 14:01:01 -0700146 */
Simon Glassb6ba3fb2015-08-10 07:14:36 -0600147 if (pll)
148 misc_data = readl(&pll->pll_misc);
149 else
150 misc_data = readl(&simple_pll->pll_misc);
151 misc_data &= ~(pllinfo->kcp_mask << pllinfo->kcp_shift);
152 misc_data |= cpcon << pllinfo->kcp_shift;
153 misc_data &= ~(pllinfo->kvco_mask << pllinfo->kvco_shift);
154 misc_data |= lfcon << pllinfo->kvco_shift;
Tom Warren795f9d72013-01-23 14:01:01 -0700155
Tom Warrena8480ef2015-06-25 09:50:44 -0700156 data = (divm << pllinfo->m_shift) | (divn << pllinfo->n_shift);
157 data |= divp << pllinfo->p_shift;
158 data |= (1 << PLL_ENABLE_SHIFT); /* BYPASS s/b 0 already */
Tom Warren795f9d72013-01-23 14:01:01 -0700159
Simon Glass6017b9a2015-04-14 21:03:32 -0600160 if (pll) {
161 writel(misc_data, &pll->pll_misc);
162 writel(data, &pll->pll_base);
163 } else {
Simon Glassb6ba3fb2015-08-10 07:14:36 -0600164 writel(misc_data, &simple_pll->pll_misc);
165 writel(data, &simple_pll->pll_base);
Simon Glass6017b9a2015-04-14 21:03:32 -0600166 }
Tom Warren795f9d72013-01-23 14:01:01 -0700167
168 /* calculate the stable time */
169 return timer_get_us() + CLOCK_PLL_STABLE_DELAY_US;
170}
171
172void clock_ll_set_source_divisor(enum periph_id periph_id, unsigned source,
173 unsigned divisor)
174{
175 u32 *reg = get_periph_source_reg(periph_id);
176 u32 value;
177
178 value = readl(reg);
179
Stephen Warrendf5ed452014-01-24 10:16:19 -0700180 value &= ~OUT_CLK_SOURCE_31_30_MASK;
181 value |= source << OUT_CLK_SOURCE_31_30_SHIFT;
Tom Warren795f9d72013-01-23 14:01:01 -0700182
183 value &= ~OUT_CLK_DIVISOR_MASK;
184 value |= divisor << OUT_CLK_DIVISOR_SHIFT;
185
186 writel(value, reg);
187}
188
Simon Glassd2d1c3f2015-04-14 21:03:33 -0600189int clock_ll_set_source_bits(enum periph_id periph_id, int mux_bits,
190 unsigned source)
Tom Warren795f9d72013-01-23 14:01:01 -0700191{
192 u32 *reg = get_periph_source_reg(periph_id);
193
Simon Glassd2d1c3f2015-04-14 21:03:33 -0600194 switch (mux_bits) {
195 case MASK_BITS_31_30:
196 clrsetbits_le32(reg, OUT_CLK_SOURCE_31_30_MASK,
197 source << OUT_CLK_SOURCE_31_30_SHIFT);
198 break;
199
200 case MASK_BITS_31_29:
201 clrsetbits_le32(reg, OUT_CLK_SOURCE_31_29_MASK,
202 source << OUT_CLK_SOURCE_31_29_SHIFT);
203 break;
204
205 case MASK_BITS_31_28:
206 clrsetbits_le32(reg, OUT_CLK_SOURCE_31_28_MASK,
207 source << OUT_CLK_SOURCE_31_28_SHIFT);
208 break;
209
210 default:
211 return -1;
212 }
213
214 return 0;
Tom Warren795f9d72013-01-23 14:01:01 -0700215}
216
Stephen Warren532543c2016-09-13 10:45:56 -0600217static int clock_ll_get_source_bits(enum periph_id periph_id, int mux_bits)
218{
219 u32 *reg = get_periph_source_reg(periph_id);
220 u32 val = readl(reg);
221
222 switch (mux_bits) {
223 case MASK_BITS_31_30:
224 val >>= OUT_CLK_SOURCE_31_30_SHIFT;
225 val &= OUT_CLK_SOURCE_31_30_MASK;
226 return val;
227 case MASK_BITS_31_29:
228 val >>= OUT_CLK_SOURCE_31_29_SHIFT;
229 val &= OUT_CLK_SOURCE_31_29_MASK;
230 return val;
231 case MASK_BITS_31_28:
232 val >>= OUT_CLK_SOURCE_31_28_SHIFT;
233 val &= OUT_CLK_SOURCE_31_28_MASK;
234 return val;
235 default:
236 return -1;
237 }
238}
239
Simon Glassd2d1c3f2015-04-14 21:03:33 -0600240void clock_ll_set_source(enum periph_id periph_id, unsigned source)
241{
242 clock_ll_set_source_bits(periph_id, MASK_BITS_31_30, source);
243}
244
Tom Warren795f9d72013-01-23 14:01:01 -0700245/**
246 * Given the parent's rate and the required rate for the children, this works
247 * out the peripheral clock divider to use, in 7.1 binary format.
248 *
249 * @param divider_bits number of divider bits (8 or 16)
250 * @param parent_rate clock rate of parent clock in Hz
251 * @param rate required clock rate for this clock
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100252 * Return: divider which should be used
Tom Warren795f9d72013-01-23 14:01:01 -0700253 */
254static int clk_get_divider(unsigned divider_bits, unsigned long parent_rate,
255 unsigned long rate)
256{
257 u64 divider = parent_rate * 2;
258 unsigned max_divider = 1 << divider_bits;
259
260 divider += rate - 1;
261 do_div(divider, rate);
262
263 if ((s64)divider - 2 < 0)
264 return 0;
265
266 if ((s64)divider - 2 >= max_divider)
267 return -1;
268
269 return divider - 2;
270}
271
272int clock_set_pllout(enum clock_id clkid, enum pll_out_id pllout, unsigned rate)
273{
274 struct clk_pll *pll = get_pll(clkid);
275 int data = 0, div = 0, offset = 0;
276
277 if (!clock_id_is_pll(clkid))
278 return -1;
279
280 if (pllout + 1 > pll_num_clkouts[clkid])
281 return -1;
282
283 div = clk_get_divider(8, pll_rate[clkid], rate);
284
285 if (div < 0)
286 return -1;
287
288 /* out2 and out4 are in the high part of the register */
289 if (pllout == PLL_OUT2 || pllout == PLL_OUT4)
290 offset = 16;
291
292 data = (div << PLL_OUT_RATIO_SHIFT) |
293 PLL_OUT_OVRRIDE | PLL_OUT_CLKEN | PLL_OUT_RSTN;
294 clrsetbits_le32(&pll->pll_out[pllout >> 1],
295 PLL_OUT_RATIO_MASK << offset, data << offset);
296
297 return 0;
298}
299
300/**
301 * Given the parent's rate and the divider in 7.1 format, this works out the
302 * resulting peripheral clock rate.
303 *
304 * @param parent_rate clock rate of parent clock in Hz
305 * @param divider which should be used in 7.1 format
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100306 * Return: effective clock rate of peripheral
Tom Warren795f9d72013-01-23 14:01:01 -0700307 */
308static unsigned long get_rate_from_divider(unsigned long parent_rate,
309 int divider)
310{
311 u64 rate;
312
313 rate = (u64)parent_rate * 2;
314 do_div(rate, divider + 2);
315 return rate;
316}
317
318unsigned long clock_get_periph_rate(enum periph_id periph_id,
319 enum clock_id parent)
320{
321 u32 *reg = get_periph_source_reg(periph_id);
Stephen Warrene331b202016-09-23 16:44:51 -0600322 unsigned parent_rate = pll_rate[parent];
323 int div = (readl(reg) & OUT_CLK_DIVISOR_MASK) >> OUT_CLK_DIVISOR_SHIFT;
324
325 switch (periph_id) {
326 case PERIPH_ID_UART1:
327 case PERIPH_ID_UART2:
328 case PERIPH_ID_UART3:
329 case PERIPH_ID_UART4:
330 case PERIPH_ID_UART5:
331#ifdef CONFIG_TEGRA20
332 /* There's no divider for these clocks in this SoC. */
333 return parent_rate;
334#else
335 /*
336 * This undoes the +2 in get_rate_from_divider() which I
337 * believe is incorrect. Ideally we would fix
338 * get_rate_from_divider(), but... Removing the +2 from
339 * get_rate_from_divider() would probably require remove the -2
340 * from the tail of clk_get_divider() since I believe that's
341 * only there to invert get_rate_from_divider()'s +2. Observe
342 * how find_best_divider() uses those two functions together.
343 * However, doing so breaks other stuff, such as Seaboard's
344 * display, likely due to clock_set_pllout()'s call to
345 * clk_get_divider(). Attempting to fix that by making
346 * clock_set_pllout() subtract 2 from clk_get_divider()'s
347 * return value doesn't help. In summary this clock driver is
348 * quite broken but I'm afraid I have no idea how to fix it
349 * without completely replacing it.
Simon Glass86b89fd2017-05-31 17:57:22 -0600350 *
351 * Be careful to avoid a divide by zero error.
Stephen Warrene331b202016-09-23 16:44:51 -0600352 */
Simon Glass86b89fd2017-05-31 17:57:22 -0600353 if (div >= 1)
354 div -= 2;
Stephen Warrene331b202016-09-23 16:44:51 -0600355 break;
356#endif
357 default:
358 break;
359 }
Tom Warren795f9d72013-01-23 14:01:01 -0700360
Jonas Schwöbelc7153aa2025-03-04 09:02:11 +0200361 /*
362 * PLLD/PLLD2 raw clock rate is never used, instead plld_out0 is used
363 * that is PLLD/PLLD2 halved.
364 */
365 if (parent == CLOCK_ID_DISPLAY || parent == CLOCK_ID_DISPLAY2)
366 parent_rate /= 2;
367
Stephen Warrene331b202016-09-23 16:44:51 -0600368 return get_rate_from_divider(parent_rate, div);
Tom Warren795f9d72013-01-23 14:01:01 -0700369}
370
371/**
372 * Find the best available 7.1 format divisor given a parent clock rate and
373 * required child clock rate. This function assumes that a second-stage
374 * divisor is available which can divide by powers of 2 from 1 to 256.
375 *
376 * @param divider_bits number of divider bits (8 or 16)
377 * @param parent_rate clock rate of parent clock in Hz
378 * @param rate required clock rate for this clock
379 * @param extra_div value for the second-stage divisor (not set if this
380 * function returns -1.
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100381 * Return: divider which should be used, or -1 if nothing is valid
Tom Warren795f9d72013-01-23 14:01:01 -0700382 *
383 */
384static int find_best_divider(unsigned divider_bits, unsigned long parent_rate,
385 unsigned long rate, int *extra_div)
386{
387 int shift;
388 int best_divider = -1;
389 int best_error = rate;
390
391 /* try dividers from 1 to 256 and find closest match */
392 for (shift = 0; shift <= 8 && best_error > 0; shift++) {
393 unsigned divided_parent = parent_rate >> shift;
394 int divider = clk_get_divider(divider_bits, divided_parent,
395 rate);
396 unsigned effective_rate = get_rate_from_divider(divided_parent,
397 divider);
398 int error = rate - effective_rate;
399
400 /* Given a valid divider, look for the lowest error */
401 if (divider != -1 && error < best_error) {
402 best_error = error;
403 *extra_div = 1 << shift;
404 best_divider = divider;
405 }
406 }
407
408 /* return what we found - *extra_div will already be set */
409 return best_divider;
410}
411
412/**
413 * Adjust peripheral PLL to use the given divider and source.
414 *
415 * @param periph_id peripheral to adjust
416 * @param source Source number (0-3 or 0-7)
417 * @param mux_bits Number of mux bits (2 or 4)
418 * @param divider Required divider in 7.1 or 15.1 format
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100419 * Return: 0 if ok, -1 on error (requesting a parent clock which is not valid
Tom Warren795f9d72013-01-23 14:01:01 -0700420 * for this peripheral)
421 */
422static int adjust_periph_pll(enum periph_id periph_id, int source,
423 int mux_bits, unsigned divider)
424{
425 u32 *reg = get_periph_source_reg(periph_id);
426
427 clrsetbits_le32(reg, OUT_CLK_DIVISOR_MASK,
428 divider << OUT_CLK_DIVISOR_SHIFT);
429 udelay(1);
430
431 /* work out the source clock and set it */
432 if (source < 0)
433 return -1;
Tom Warren2fde44e2014-01-24 10:16:22 -0700434
Simon Glassd2d1c3f2015-04-14 21:03:33 -0600435 clock_ll_set_source_bits(periph_id, mux_bits, source);
Tom Warren2fde44e2014-01-24 10:16:22 -0700436
Tom Warren795f9d72013-01-23 14:01:01 -0700437 udelay(2);
438 return 0;
439}
440
Stephen Warren532543c2016-09-13 10:45:56 -0600441enum clock_id clock_get_periph_parent(enum periph_id periph_id)
442{
443 int err, mux_bits, divider_bits, type;
444 int source;
445
446 err = get_periph_clock_info(periph_id, &mux_bits, &divider_bits, &type);
447 if (err)
448 return CLOCK_ID_NONE;
449
450 source = clock_ll_get_source_bits(periph_id, mux_bits);
451
452 return get_periph_clock_id(periph_id, source);
453}
454
Tom Warren795f9d72013-01-23 14:01:01 -0700455unsigned clock_adjust_periph_pll_div(enum periph_id periph_id,
456 enum clock_id parent, unsigned rate, int *extra_div)
457{
458 unsigned effective_rate;
Jonas Schwöbelc7153aa2025-03-04 09:02:11 +0200459 unsigned int parent_rate;
Tom Warren795f9d72013-01-23 14:01:01 -0700460 int mux_bits, divider_bits, source;
461 int divider;
Allen Martin810a4e42013-05-10 16:56:55 +0000462 int xdiv = 0;
Tom Warren795f9d72013-01-23 14:01:01 -0700463
464 /* work out the source clock and set it */
465 source = get_periph_clock_source(periph_id, parent, &mux_bits,
466 &divider_bits);
467
Jonas Schwöbelc7153aa2025-03-04 09:02:11 +0200468 /*
469 * Clocks derived from PLLD/D2 are actually sourced from its halved
470 * output, plld_out0/plld2_out0. No peripheral clocks use the raw
471 * PLLD/D2 frequency. This halving must be accounted for in derived
472 * clock calculations.
473 */
474 parent_rate = pll_rate[parent];
475 if (parent == CLOCK_ID_DISPLAY || parent == CLOCK_ID_DISPLAY2)
476 parent_rate /= 2;
477
478 divider = find_best_divider(divider_bits, parent_rate,
Allen Martin810a4e42013-05-10 16:56:55 +0000479 rate, &xdiv);
Tom Warren795f9d72013-01-23 14:01:01 -0700480 if (extra_div)
Allen Martin810a4e42013-05-10 16:56:55 +0000481 *extra_div = xdiv;
482
Tom Warren795f9d72013-01-23 14:01:01 -0700483 assert(divider >= 0);
484 if (adjust_periph_pll(periph_id, source, mux_bits, divider))
485 return -1U;
486 debug("periph %d, rate=%d, reg=%p = %x\n", periph_id, rate,
487 get_periph_source_reg(periph_id),
488 readl(get_periph_source_reg(periph_id)));
489
490 /* Check what we ended up with. This shouldn't matter though */
491 effective_rate = clock_get_periph_rate(periph_id, parent);
492 if (extra_div)
493 effective_rate /= *extra_div;
494 if (rate != effective_rate)
495 debug("Requested clock rate %u not honored (got %u)\n",
496 rate, effective_rate);
497 return effective_rate;
498}
499
500unsigned clock_start_periph_pll(enum periph_id periph_id,
501 enum clock_id parent, unsigned rate)
502{
503 unsigned effective_rate;
504
505 reset_set_enable(periph_id, 1);
506 clock_enable(periph_id);
Simon Glass1a62f102019-04-01 13:38:38 -0700507 udelay(2);
Tom Warren795f9d72013-01-23 14:01:01 -0700508
509 effective_rate = clock_adjust_periph_pll_div(periph_id, parent, rate,
510 NULL);
511
512 reset_set_enable(periph_id, 0);
513 return effective_rate;
514}
515
516void clock_enable(enum periph_id clkid)
517{
518 clock_set_enable(clkid, 1);
519}
520
521void clock_disable(enum periph_id clkid)
522{
523 clock_set_enable(clkid, 0);
524}
525
526void reset_periph(enum periph_id periph_id, int us_delay)
527{
528 /* Put peripheral into reset */
529 reset_set_enable(periph_id, 1);
530 udelay(us_delay);
531
532 /* Remove reset */
533 reset_set_enable(periph_id, 0);
534
535 udelay(us_delay);
536}
537
538void reset_cmplx_set_enable(int cpu, int which, int reset)
539{
540 struct clk_rst_ctlr *clkrst =
541 (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
542 u32 mask;
543
544 /* Form the mask, which depends on the cpu chosen (2 or 4) */
545 assert(cpu >= 0 && cpu < MAX_NUM_CPU);
546 mask = which << cpu;
547
548 /* either enable or disable those reset for that CPU */
549 if (reset)
550 writel(mask, &clkrst->crc_cpu_cmplx_set);
551 else
552 writel(mask, &clkrst->crc_cpu_cmplx_clr);
553}
554
Thierry Redingfa6e24d2015-08-20 11:42:19 +0200555unsigned int __weak clk_m_get_rate(unsigned int parent_rate)
556{
557 return parent_rate;
558}
559
Tom Warren795f9d72013-01-23 14:01:01 -0700560unsigned clock_get_rate(enum clock_id clkid)
561{
Svyatoslav Ryhelc93b5182023-07-03 18:06:54 +0300562 struct clk_pll *pll = NULL;
563 struct clk_pll_simple *simple_pll = NULL;
Tom Warrena8480ef2015-06-25 09:50:44 -0700564 u32 base, divm;
565 u64 parent_rate, rate;
566 struct clk_pll_info *pllinfo = &tegra_pll_info_table[clkid];
Tom Warren795f9d72013-01-23 14:01:01 -0700567
568 parent_rate = osc_freq[clock_get_osc_freq()];
569 if (clkid == CLOCK_ID_OSC)
570 return parent_rate;
571
Thierry Redingfa6e24d2015-08-20 11:42:19 +0200572 if (clkid == CLOCK_ID_CLK_M)
573 return clk_m_get_rate(parent_rate);
574
Svyatoslav Ryhelc93b5182023-07-03 18:06:54 +0300575 if (clkid < (enum clock_id)TEGRA_CLK_PLLS)
576 pll = get_pll(clkid);
577 else
578 simple_pll = clock_get_simple_pll(clkid);
579
580 if (!simple_pll && !pll) {
581 log_err("Unknown PLL id %d\n", clkid);
Simon Glass6017b9a2015-04-14 21:03:32 -0600582 return 0;
Svyatoslav Ryhelc93b5182023-07-03 18:06:54 +0300583 }
584
585 if (pll)
586 base = readl(&pll->pll_base);
587 else
588 base = readl(&simple_pll->pll_base);
Tom Warren795f9d72013-01-23 14:01:01 -0700589
Tom Warrena8480ef2015-06-25 09:50:44 -0700590 rate = parent_rate * ((base >> pllinfo->n_shift) & pllinfo->n_mask);
591 divm = (base >> pllinfo->m_shift) & pllinfo->m_mask;
592 /*
593 * PLLU uses p_mask/p_shift for VCO on all but T210,
594 * T210 uses normal DIVP. Handled in pllinfo table.
595 */
Stephen Warrenb1c6a8a2015-08-19 17:03:59 -0600596#ifdef CONFIG_TEGRA210
597 /*
598 * PLLP's primary output (pllP_out0) on T210 is the VCO, and divp is
599 * not applied. pllP_out2 does have divp applied. All other pllP_outN
600 * are divided down from pllP_out0. We only support pllP_out0 in
601 * U-Boot at the time of writing this comment.
602 */
603 if (clkid != CLOCK_ID_PERIPH)
604#endif
605 divm <<= (base >> pllinfo->p_shift) & pllinfo->p_mask;
Tom Warren795f9d72013-01-23 14:01:01 -0700606 do_div(rate, divm);
607 return rate;
608}
609
610/**
611 * Set the output frequency you want for each PLL clock.
612 * PLL output frequencies are programmed by setting their N, M and P values.
613 * The governing equations are:
614 * VCO = (Fi / m) * n, Fo = VCO / (2^p)
615 * where Fo is the output frequency from the PLL.
616 * Example: Set the output frequency to 216Mhz(Fo) with 12Mhz OSC(Fi)
617 * 216Mhz = ((12Mhz / m) * n) / (2^p) so n=432,m=12,p=1
618 * Please see Tegra TRM section 5.3 to get the detail for PLL Programming
619 *
620 * @param n PLL feedback divider(DIVN)
621 * @param m PLL input divider(DIVN)
622 * @param p post divider(DIVP)
623 * @param cpcon base PLL charge pump(CPCON)
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100624 * Return: 0 if ok, -1 on error (the requested PLL is incorrect and cannot
Robert P. J. Day8d56db92016-07-15 13:44:45 -0400625 * be overridden), 1 if PLL is already correct
Tom Warren795f9d72013-01-23 14:01:01 -0700626 */
627int clock_set_rate(enum clock_id clkid, u32 n, u32 m, u32 p, u32 cpcon)
628{
Tom Warrena8480ef2015-06-25 09:50:44 -0700629 u32 base_reg, misc_reg;
Svyatoslav Ryhelc93b5182023-07-03 18:06:54 +0300630 struct clk_pll *pll = NULL;
631 struct clk_pll_simple *simple_pll = NULL;
Tom Warrena8480ef2015-06-25 09:50:44 -0700632 struct clk_pll_info *pllinfo = &tegra_pll_info_table[clkid];
Tom Warren795f9d72013-01-23 14:01:01 -0700633
Svyatoslav Ryhelc93b5182023-07-03 18:06:54 +0300634 if (clkid < (enum clock_id)TEGRA_CLK_PLLS)
635 pll = get_pll(clkid);
636 else
637 simple_pll = clock_get_simple_pll(clkid);
638
639 if (!simple_pll && !pll) {
640 log_err("Unknown PLL id %d\n", clkid);
641 return 0;
642 }
Tom Warren795f9d72013-01-23 14:01:01 -0700643
Svyatoslav Ryhelc93b5182023-07-03 18:06:54 +0300644 if (pll)
645 base_reg = readl(&pll->pll_base);
646 else
647 base_reg = readl(&simple_pll->pll_base);
Tom Warren795f9d72013-01-23 14:01:01 -0700648
649 /* Set BYPASS, m, n and p to PLL_BASE */
Tom Warrena8480ef2015-06-25 09:50:44 -0700650 base_reg &= ~(pllinfo->m_mask << pllinfo->m_shift);
651 base_reg |= m << pllinfo->m_shift;
Tom Warren795f9d72013-01-23 14:01:01 -0700652
Tom Warrena8480ef2015-06-25 09:50:44 -0700653 base_reg &= ~(pllinfo->n_mask << pllinfo->n_shift);
654 base_reg |= n << pllinfo->n_shift;
Tom Warren795f9d72013-01-23 14:01:01 -0700655
Tom Warrena8480ef2015-06-25 09:50:44 -0700656 base_reg &= ~(pllinfo->p_mask << pllinfo->p_shift);
657 base_reg |= p << pllinfo->p_shift;
Tom Warren795f9d72013-01-23 14:01:01 -0700658
659 if (clkid == CLOCK_ID_PERIPH) {
660 /*
661 * If the PLL is already set up, check that it is correct
662 * and record this info for clock_verify() to check.
663 */
664 if (base_reg & PLL_BASE_OVRRIDE_MASK) {
665 base_reg |= PLL_ENABLE_MASK;
666 if (base_reg != readl(&pll->pll_base))
667 pllp_valid = 0;
668 return pllp_valid ? 1 : -1;
669 }
670 base_reg |= PLL_BASE_OVRRIDE_MASK;
671 }
672
673 base_reg |= PLL_BYPASS_MASK;
Svyatoslav Ryhelc93b5182023-07-03 18:06:54 +0300674 if (pll)
675 writel(base_reg, &pll->pll_base);
676 else
677 writel(base_reg, &simple_pll->pll_base);
Tom Warren795f9d72013-01-23 14:01:01 -0700678
Tom Warrena8480ef2015-06-25 09:50:44 -0700679 /* Set cpcon (KCP) to PLL_MISC */
Svyatoslav Ryhelc93b5182023-07-03 18:06:54 +0300680 if (pll)
681 misc_reg = readl(&pll->pll_misc);
682 else
683 misc_reg = readl(&simple_pll->pll_misc);
684
Tom Warrena8480ef2015-06-25 09:50:44 -0700685 misc_reg &= ~(pllinfo->kcp_mask << pllinfo->kcp_shift);
686 misc_reg |= cpcon << pllinfo->kcp_shift;
Svyatoslav Ryhelc93b5182023-07-03 18:06:54 +0300687 if (pll)
688 writel(misc_reg, &pll->pll_misc);
689 else
690 writel(misc_reg, &simple_pll->pll_misc);
Tom Warren795f9d72013-01-23 14:01:01 -0700691
692 /* Enable PLL */
693 base_reg |= PLL_ENABLE_MASK;
Svyatoslav Ryhelc93b5182023-07-03 18:06:54 +0300694 if (pll)
695 writel(base_reg, &pll->pll_base);
696 else
697 writel(base_reg, &simple_pll->pll_base);
Tom Warren795f9d72013-01-23 14:01:01 -0700698
699 /* Disable BYPASS */
700 base_reg &= ~PLL_BYPASS_MASK;
Svyatoslav Ryhelc93b5182023-07-03 18:06:54 +0300701 if (pll)
702 writel(base_reg, &pll->pll_base);
703 else
704 writel(base_reg, &simple_pll->pll_base);
Tom Warren795f9d72013-01-23 14:01:01 -0700705
Svyatoslav Ryhel3a7713d2025-03-24 21:24:45 +0200706 /* PLLD and PLLD2 are only clocks which have ENABLE bit */
707 if (clkid == CLOCK_ID_DISPLAY)
708 setbits_le32(&pll->pll_misc, BIT(PLLD_CLKENABLE));
709 if (clkid == CLOCK_ID_DISPLAY2)
710 setbits_le32(&simple_pll->pll_misc, BIT(PLLD_CLKENABLE));
711
Jonas Schwöbelc7153aa2025-03-04 09:02:11 +0200712 /*
713 * Changing clocks was never intended in the U-Boot for Tegra.
714 * If a clock is changed after clock_init() the parent rate is wrong.
715 * Usually there is no reason to change peripheral clocks, but Display
716 * PLLs which needs to generate a precise pixelclock might be adjusted.
717 * Especially in the case of HDMI display with changing and prior
718 * unknown resolution.
719 */
720 pll_rate[clkid] = clock_get_rate(clkid);
721
Tom Warren795f9d72013-01-23 14:01:01 -0700722 return 0;
723}
724
725void clock_ll_start_uart(enum periph_id periph_id)
726{
727 /* Assert UART reset and enable clock */
728 reset_set_enable(periph_id, 1);
729 clock_enable(periph_id);
730 clock_ll_set_source(periph_id, 0); /* UARTx_CLK_SRC = 00, PLLP_OUT0 */
731
732 /* wait for 2us */
733 udelay(2);
734
735 /* De-assert reset to UART */
736 reset_set_enable(periph_id, 0);
737}
738
Masahiro Yamada366b24f2015-08-12 07:31:55 +0900739#if CONFIG_IS_ENABLED(OF_CONTROL)
Simon Glassc3f26502017-07-25 08:30:00 -0600740int clock_decode_periph_id(struct udevice *dev)
Tom Warren795f9d72013-01-23 14:01:01 -0700741{
742 enum periph_id id;
743 u32 cell[2];
744 int err;
745
Simon Glassc3f26502017-07-25 08:30:00 -0600746 err = dev_read_u32_array(dev, "clocks", cell, ARRAY_SIZE(cell));
Tom Warren795f9d72013-01-23 14:01:01 -0700747 if (err)
748 return -1;
749 id = clk_id_to_periph_id(cell[1]);
750 assert(clock_periph_id_isvalid(id));
751 return id;
752}
Svyatoslav Ryhelb6e50b82023-02-14 19:35:26 +0200753
754/*
755 * Get periph clock id and its parent from device tree.
756 *
757 * @param dev udevice associated with FDT node
758 * @param clk_id pointer to u32 array of 2 values
759 * first is periph clock, second is
760 * its PLL parent according to FDT.
761 */
762int clock_decode_pair(struct udevice *dev, int *clk_id)
763{
764 u32 cell[4];
765 int err;
766
767 err = dev_read_u32_array(dev, "clocks", cell, ARRAY_SIZE(cell));
768 if (err)
769 return -EINVAL;
770
771 clk_id[0] = clk_id_to_periph_id(cell[1]);
772 clk_id[1] = clk_id_to_pll_id(cell[3]);
773
774 return 0;
775}
Masahiro Yamada366b24f2015-08-12 07:31:55 +0900776#endif /* CONFIG_IS_ENABLED(OF_CONTROL) */
Tom Warren795f9d72013-01-23 14:01:01 -0700777
778int clock_verify(void)
779{
780 struct clk_pll *pll = get_pll(CLOCK_ID_PERIPH);
781 u32 reg = readl(&pll->pll_base);
782
783 if (!pllp_valid) {
784 printf("Warning: PLLP %x is not correct\n", reg);
785 return -1;
786 }
787 debug("PLLP %x is correct\n", reg);
788 return 0;
789}
790
791void clock_init(void)
792{
Stephen Warren1453d102016-09-13 10:45:55 -0600793 int i;
794
Tom Warren27bce712015-06-22 13:03:44 -0700795 pll_rate[CLOCK_ID_CGENERAL] = clock_get_rate(CLOCK_ID_CGENERAL);
Tom Warren795f9d72013-01-23 14:01:01 -0700796 pll_rate[CLOCK_ID_MEMORY] = clock_get_rate(CLOCK_ID_MEMORY);
797 pll_rate[CLOCK_ID_PERIPH] = clock_get_rate(CLOCK_ID_PERIPH);
Tom Warren27bce712015-06-22 13:03:44 -0700798 pll_rate[CLOCK_ID_USB] = clock_get_rate(CLOCK_ID_USB);
Simon Glass93a19952015-04-14 21:03:34 -0600799 pll_rate[CLOCK_ID_DISPLAY] = clock_get_rate(CLOCK_ID_DISPLAY);
Tom Warren795f9d72013-01-23 14:01:01 -0700800 pll_rate[CLOCK_ID_XCPU] = clock_get_rate(CLOCK_ID_XCPU);
Tom Warren27bce712015-06-22 13:03:44 -0700801 pll_rate[CLOCK_ID_SFROM32KHZ] = 32768;
802 pll_rate[CLOCK_ID_OSC] = clock_get_rate(CLOCK_ID_OSC);
Thierry Redingfa6e24d2015-08-20 11:42:19 +0200803 pll_rate[CLOCK_ID_CLK_M] = clock_get_rate(CLOCK_ID_CLK_M);
Svyatoslav Ryhel6af975c2023-07-03 18:11:58 +0300804#ifndef CONFIG_TEGRA20
805 pll_rate[CLOCK_ID_DISPLAY2] = clock_get_rate(CLOCK_ID_DISPLAY2);
806#endif
Tom Warren27bce712015-06-22 13:03:44 -0700807
Tom Warren795f9d72013-01-23 14:01:01 -0700808 debug("Osc = %d\n", pll_rate[CLOCK_ID_OSC]);
Thierry Redingfa6e24d2015-08-20 11:42:19 +0200809 debug("CLKM = %d\n", pll_rate[CLOCK_ID_CLK_M]);
Tom Warren27bce712015-06-22 13:03:44 -0700810 debug("PLLC = %d\n", pll_rate[CLOCK_ID_CGENERAL]);
Tom Warren795f9d72013-01-23 14:01:01 -0700811 debug("PLLM = %d\n", pll_rate[CLOCK_ID_MEMORY]);
812 debug("PLLP = %d\n", pll_rate[CLOCK_ID_PERIPH]);
Tom Warren27bce712015-06-22 13:03:44 -0700813 debug("PLLU = %d\n", pll_rate[CLOCK_ID_USB]);
Simon Glass93a19952015-04-14 21:03:34 -0600814 debug("PLLD = %d\n", pll_rate[CLOCK_ID_DISPLAY]);
Tom Warren795f9d72013-01-23 14:01:01 -0700815 debug("PLLX = %d\n", pll_rate[CLOCK_ID_XCPU]);
Stephen Warren1453d102016-09-13 10:45:55 -0600816
817 for (i = 0; periph_clk_init_table[i].periph_id != -1; i++) {
818 enum periph_id periph_id;
819 enum clock_id parent;
820 int source, mux_bits, divider_bits;
821
822 periph_id = periph_clk_init_table[i].periph_id;
823 parent = periph_clk_init_table[i].parent_clock_id;
824
825 source = get_periph_clock_source(periph_id, parent, &mux_bits,
826 &divider_bits);
827 clock_ll_set_source_bits(periph_id, mux_bits, source);
828 }
Tom Warren795f9d72013-01-23 14:01:01 -0700829}
Jimmy Zhang2a544db2014-01-24 10:37:36 -0700830
831static void set_avp_clock_source(u32 src)
832{
833 struct clk_rst_ctlr *clkrst =
834 (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
835 u32 val;
836
837 val = (src << SCLK_SWAKEUP_FIQ_SOURCE_SHIFT) |
838 (src << SCLK_SWAKEUP_IRQ_SOURCE_SHIFT) |
839 (src << SCLK_SWAKEUP_RUN_SOURCE_SHIFT) |
840 (src << SCLK_SWAKEUP_IDLE_SOURCE_SHIFT) |
841 (SCLK_SYS_STATE_RUN << SCLK_SYS_STATE_SHIFT);
842 writel(val, &clkrst->crc_sclk_brst_pol);
843 udelay(3);
844}
845
846/*
847 * This function is useful on Tegra30, and any later SoCs that have compatible
848 * PLLP configuration registers.
Tom Warrenab0cc6b2015-03-04 16:36:00 -0700849 * NOTE: Not used on Tegra210 - see tegra210_setup_pllp in T210 clock.c
Jimmy Zhang2a544db2014-01-24 10:37:36 -0700850 */
851void tegra30_set_up_pllp(void)
852{
853 struct clk_rst_ctlr *clkrst = (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
854 u32 reg;
855
856 /*
857 * Based on the Tegra TRM, the system clock (which is the AVP clock) can
858 * run up to 275MHz. On power on, the default sytem clock source is set
859 * to PLLP_OUT0. This function sets PLLP's (hence PLLP_OUT0's) rate to
860 * 408MHz which is beyond system clock's upper limit.
861 *
862 * The fix is to set the system clock to CLK_M before initializing PLLP,
863 * and then switch back to PLLP_OUT4, which has an appropriate divider
864 * configured, after PLLP has been configured
865 */
866 set_avp_clock_source(SCLK_SOURCE_CLKM);
867
868 /*
869 * PLLP output frequency set to 408Mhz
870 * PLLC output frequency set to 228Mhz
871 */
872 switch (clock_get_osc_freq()) {
873 case CLOCK_OSC_FREQ_12_0: /* OSC is 12Mhz */
Svyatoslav Ryhel7f4ab332023-02-01 10:53:01 +0200874 case CLOCK_OSC_FREQ_48_0: /* OSC is 48Mhz */
Jimmy Zhang2a544db2014-01-24 10:37:36 -0700875 clock_set_rate(CLOCK_ID_PERIPH, 408, 12, 0, 8);
876 clock_set_rate(CLOCK_ID_CGENERAL, 456, 12, 1, 8);
877 break;
878
879 case CLOCK_OSC_FREQ_26_0: /* OSC is 26Mhz */
880 clock_set_rate(CLOCK_ID_PERIPH, 408, 26, 0, 8);
881 clock_set_rate(CLOCK_ID_CGENERAL, 600, 26, 0, 8);
882 break;
883
884 case CLOCK_OSC_FREQ_13_0: /* OSC is 13Mhz */
Svyatoslav Ryhel7f4ab332023-02-01 10:53:01 +0200885 case CLOCK_OSC_FREQ_16_8: /* OSC is 16.8Mhz */
Jimmy Zhang2a544db2014-01-24 10:37:36 -0700886 clock_set_rate(CLOCK_ID_PERIPH, 408, 13, 0, 8);
887 clock_set_rate(CLOCK_ID_CGENERAL, 600, 13, 0, 8);
888 break;
Svyatoslav Ryhel7f4ab332023-02-01 10:53:01 +0200889
Jimmy Zhang2a544db2014-01-24 10:37:36 -0700890 case CLOCK_OSC_FREQ_19_2:
Svyatoslav Ryhel7f4ab332023-02-01 10:53:01 +0200891 case CLOCK_OSC_FREQ_38_4:
Jimmy Zhang2a544db2014-01-24 10:37:36 -0700892 default:
893 /*
894 * These are not supported. It is too early to print a
895 * message and the UART likely won't work anyway due to the
896 * oscillator being wrong.
897 */
898 break;
899 }
900
901 /* Set PLLP_OUT1, 2, 3 & 4 freqs to 9.6, 48, 102 & 204MHz */
902
903 /* OUT1, 2 */
904 /* Assert RSTN before enable */
905 reg = PLLP_OUT2_RSTN_EN | PLLP_OUT1_RSTN_EN;
906 writel(reg, &clkrst->crc_pll[CLOCK_ID_PERIPH].pll_out[0]);
907 /* Set divisor and reenable */
908 reg = (IN_408_OUT_48_DIVISOR << PLLP_OUT2_RATIO)
909 | PLLP_OUT2_OVR | PLLP_OUT2_CLKEN | PLLP_OUT2_RSTN_DIS
910 | (IN_408_OUT_9_6_DIVISOR << PLLP_OUT1_RATIO)
911 | PLLP_OUT1_OVR | PLLP_OUT1_CLKEN | PLLP_OUT1_RSTN_DIS;
912 writel(reg, &clkrst->crc_pll[CLOCK_ID_PERIPH].pll_out[0]);
913
914 /* OUT3, 4 */
915 /* Assert RSTN before enable */
916 reg = PLLP_OUT4_RSTN_EN | PLLP_OUT3_RSTN_EN;
917 writel(reg, &clkrst->crc_pll[CLOCK_ID_PERIPH].pll_out[1]);
918 /* Set divisor and reenable */
919 reg = (IN_408_OUT_204_DIVISOR << PLLP_OUT4_RATIO)
920 | PLLP_OUT4_OVR | PLLP_OUT4_CLKEN | PLLP_OUT4_RSTN_DIS
921 | (IN_408_OUT_102_DIVISOR << PLLP_OUT3_RATIO)
922 | PLLP_OUT3_OVR | PLLP_OUT3_CLKEN | PLLP_OUT3_RSTN_DIS;
923 writel(reg, &clkrst->crc_pll[CLOCK_ID_PERIPH].pll_out[1]);
924
925 set_avp_clock_source(SCLK_SOURCE_PLLP_OUT4);
926}
Simon Glasscd4b59b2015-06-05 14:39:36 -0600927
928int clock_external_output(int clk_id)
929{
Thierry Redingce7eb162019-04-15 11:32:25 +0200930 u32 val;
Simon Glasscd4b59b2015-06-05 14:39:36 -0600931
932 if (clk_id >= 1 && clk_id <= 3) {
Thierry Redingce7eb162019-04-15 11:32:25 +0200933 val = tegra_pmc_readl(offsetof(struct pmc_ctlr,
934 pmc_clk_out_cntrl));
935 val |= 1 << (2 + (clk_id - 1) * 8);
936 tegra_pmc_writel(val,
937 offsetof(struct pmc_ctlr,
938 pmc_clk_out_cntrl));
939
Simon Glasscd4b59b2015-06-05 14:39:36 -0600940 } else {
941 printf("%s: Unknown output clock id %d\n", __func__, clk_id);
942 return -EINVAL;
943 }
944
945 return 0;
946}
Simon Glass2b4029a2017-05-31 17:57:16 -0600947
948__weak bool clock_early_init_done(void)
949{
950 return true;
951}