1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2010-2019, NVIDIA CORPORATION. All rights reserved.
6 /* Tegra SoC common clock control functions */
14 #include <asm/arch/clock.h>
15 #include <asm/arch/tegra.h>
16 #include <asm/arch-tegra/ap.h>
17 #include <asm/arch-tegra/clk_rst.h>
18 #include <asm/arch-tegra/pmc.h>
19 #include <asm/arch-tegra/timer.h>
20 #include <linux/delay.h>
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
27 static unsigned pll_rate[CLOCK_ID_COUNT];
30 * The oscillator frequency is fixed to one of seven set values. Based on this
31 * the other clocks are set up appropriately.
33 static unsigned osc_freq[CLOCK_OSC_FREQ_COUNT] = {
49 /* return 1 if a peripheral ID is in range */
50 #define clock_type_id_isvalid(id) ((id) >= 0 && \
51 (id) < CLOCK_TYPE_COUNT)
53 char pllp_valid = 1; /* PLLP is set up correctly */
55 /* return 1 if a periphc_internal_id is in range */
56 #define periphc_internal_id_isvalid(id) ((id) >= 0 && \
59 /* number of clock outputs of a PLL */
60 static const u8 pll_num_clkouts[] = {
69 int clock_get_osc_bypass(void)
71 struct clk_rst_ctlr *clkrst =
72 (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
75 reg = readl(&clkrst->crc_osc_ctrl);
76 return (reg & OSC_XOBP_MASK) >> OSC_XOBP_SHIFT;
79 /* Returns a pointer to the registers of the given pll */
80 static struct clk_pll *get_pll(enum clock_id clkid)
82 struct clk_rst_ctlr *clkrst =
83 (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
85 assert(clock_id_is_pll(clkid));
86 if (clkid >= (enum clock_id)TEGRA_CLK_PLLS) {
87 debug("%s: Invalid PLL %d\n", __func__, clkid);
90 return &clkrst->crc_pll[clkid];
93 __weak struct clk_pll_simple *clock_get_simple_pll(enum clock_id clkid)
98 int clock_ll_read_pll(enum clock_id clkid, u32 *divm, u32 *divn,
99 u32 *divp, u32 *cpcon, u32 *lfcon)
101 struct clk_pll *pll = get_pll(clkid);
102 struct clk_pll_info *pllinfo = &tegra_pll_info_table[clkid];
105 assert(clkid != CLOCK_ID_USB);
107 /* Safety check, adds to code size but is small */
108 if (!clock_id_is_pll(clkid) || clkid == CLOCK_ID_USB)
110 data = readl(&pll->pll_base);
111 *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;
114 data = readl(&pll->pll_misc);
115 /* 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;
122 unsigned long clock_start_pll(enum clock_id clkid, u32 divm, u32 divn,
123 u32 divp, u32 cpcon, u32 lfcon)
125 struct clk_pll *pll = NULL;
126 struct clk_pll_info *pllinfo = &tegra_pll_info_table[clkid];
127 struct clk_pll_simple *simple_pll = NULL;
130 if (clkid < (enum clock_id)TEGRA_CLK_PLLS)
131 pll = get_pll(clkid);
133 simple_pll = clock_get_simple_pll(clkid);
135 if (!simple_pll && !pll) {
136 log_err("Unknown PLL id %d\n", clkid);
141 * 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.
145 * Preserve EN_LOCKDET, etc.
148 misc_data = readl(&pll->pll_misc);
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;
156 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 */
161 writel(misc_data, &pll->pll_misc);
162 writel(data, &pll->pll_base);
164 writel(misc_data, &simple_pll->pll_misc);
165 writel(data, &simple_pll->pll_base);
168 /* calculate the stable time */
169 return timer_get_us() + CLOCK_PLL_STABLE_DELAY_US;
172 void clock_ll_set_source_divisor(enum periph_id periph_id, unsigned source,
175 u32 *reg = get_periph_source_reg(periph_id);
180 value &= ~OUT_CLK_SOURCE_31_30_MASK;
181 value |= source << OUT_CLK_SOURCE_31_30_SHIFT;
183 value &= ~OUT_CLK_DIVISOR_MASK;
184 value |= divisor << OUT_CLK_DIVISOR_SHIFT;
189 int clock_ll_set_source_bits(enum periph_id periph_id, int mux_bits,
192 u32 *reg = get_periph_source_reg(periph_id);
195 case MASK_BITS_31_30:
196 clrsetbits_le32(reg, OUT_CLK_SOURCE_31_30_MASK,
197 source << OUT_CLK_SOURCE_31_30_SHIFT);
200 case MASK_BITS_31_29:
201 clrsetbits_le32(reg, OUT_CLK_SOURCE_31_29_MASK,
202 source << OUT_CLK_SOURCE_31_29_SHIFT);
205 case MASK_BITS_31_28:
206 clrsetbits_le32(reg, OUT_CLK_SOURCE_31_28_MASK,
207 source << OUT_CLK_SOURCE_31_28_SHIFT);
217 static int clock_ll_get_source_bits(enum periph_id periph_id, int mux_bits)
219 u32 *reg = get_periph_source_reg(periph_id);
220 u32 val = readl(reg);
223 case MASK_BITS_31_30:
224 val >>= OUT_CLK_SOURCE_31_30_SHIFT;
225 val &= OUT_CLK_SOURCE_31_30_MASK;
227 case MASK_BITS_31_29:
228 val >>= OUT_CLK_SOURCE_31_29_SHIFT;
229 val &= OUT_CLK_SOURCE_31_29_MASK;
231 case MASK_BITS_31_28:
232 val >>= OUT_CLK_SOURCE_31_28_SHIFT;
233 val &= OUT_CLK_SOURCE_31_28_MASK;
240 void clock_ll_set_source(enum periph_id periph_id, unsigned source)
242 clock_ll_set_source_bits(periph_id, MASK_BITS_31_30, source);
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.
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
252 * Return: divider which should be used
254 static int clk_get_divider(unsigned divider_bits, unsigned long parent_rate,
257 u64 divider = parent_rate * 2;
258 unsigned max_divider = 1 << divider_bits;
261 do_div(divider, rate);
263 if ((s64)divider - 2 < 0)
266 if ((s64)divider - 2 >= max_divider)
272 int clock_set_pllout(enum clock_id clkid, enum pll_out_id pllout, unsigned rate)
274 struct clk_pll *pll = get_pll(clkid);
275 int data = 0, div = 0, offset = 0;
277 if (!clock_id_is_pll(clkid))
280 if (pllout + 1 > pll_num_clkouts[clkid])
283 div = clk_get_divider(8, pll_rate[clkid], rate);
288 /* out2 and out4 are in the high part of the register */
289 if (pllout == PLL_OUT2 || pllout == PLL_OUT4)
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);
301 * Given the parent's rate and the divider in 7.1 format, this works out the
302 * resulting peripheral clock rate.
304 * @param parent_rate clock rate of parent clock in Hz
305 * @param divider which should be used in 7.1 format
306 * Return: effective clock rate of peripheral
308 static unsigned long get_rate_from_divider(unsigned long parent_rate,
313 rate = (u64)parent_rate * 2;
314 do_div(rate, divider + 2);
318 unsigned long clock_get_periph_rate(enum periph_id periph_id,
319 enum clock_id parent)
321 u32 *reg = get_periph_source_reg(periph_id);
322 unsigned parent_rate = pll_rate[parent];
323 int div = (readl(reg) & OUT_CLK_DIVISOR_MASK) >> OUT_CLK_DIVISOR_SHIFT;
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. */
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.
351 * Be careful to avoid a divide by zero error.
361 return get_rate_from_divider(parent_rate, div);
365 * Find the best available 7.1 format divisor given a parent clock rate and
366 * required child clock rate. This function assumes that a second-stage
367 * divisor is available which can divide by powers of 2 from 1 to 256.
369 * @param divider_bits number of divider bits (8 or 16)
370 * @param parent_rate clock rate of parent clock in Hz
371 * @param rate required clock rate for this clock
372 * @param extra_div value for the second-stage divisor (not set if this
373 * function returns -1.
374 * Return: divider which should be used, or -1 if nothing is valid
377 static int find_best_divider(unsigned divider_bits, unsigned long parent_rate,
378 unsigned long rate, int *extra_div)
381 int best_divider = -1;
382 int best_error = rate;
384 /* try dividers from 1 to 256 and find closest match */
385 for (shift = 0; shift <= 8 && best_error > 0; shift++) {
386 unsigned divided_parent = parent_rate >> shift;
387 int divider = clk_get_divider(divider_bits, divided_parent,
389 unsigned effective_rate = get_rate_from_divider(divided_parent,
391 int error = rate - effective_rate;
393 /* Given a valid divider, look for the lowest error */
394 if (divider != -1 && error < best_error) {
396 *extra_div = 1 << shift;
397 best_divider = divider;
401 /* return what we found - *extra_div will already be set */
406 * Adjust peripheral PLL to use the given divider and source.
408 * @param periph_id peripheral to adjust
409 * @param source Source number (0-3 or 0-7)
410 * @param mux_bits Number of mux bits (2 or 4)
411 * @param divider Required divider in 7.1 or 15.1 format
412 * Return: 0 if ok, -1 on error (requesting a parent clock which is not valid
413 * for this peripheral)
415 static int adjust_periph_pll(enum periph_id periph_id, int source,
416 int mux_bits, unsigned divider)
418 u32 *reg = get_periph_source_reg(periph_id);
420 clrsetbits_le32(reg, OUT_CLK_DIVISOR_MASK,
421 divider << OUT_CLK_DIVISOR_SHIFT);
424 /* work out the source clock and set it */
428 clock_ll_set_source_bits(periph_id, mux_bits, source);
434 enum clock_id clock_get_periph_parent(enum periph_id periph_id)
436 int err, mux_bits, divider_bits, type;
439 err = get_periph_clock_info(periph_id, &mux_bits, ÷r_bits, &type);
441 return CLOCK_ID_NONE;
443 source = clock_ll_get_source_bits(periph_id, mux_bits);
445 return get_periph_clock_id(periph_id, source);
448 unsigned clock_adjust_periph_pll_div(enum periph_id periph_id,
449 enum clock_id parent, unsigned rate, int *extra_div)
451 unsigned effective_rate;
452 int mux_bits, divider_bits, source;
456 /* work out the source clock and set it */
457 source = get_periph_clock_source(periph_id, parent, &mux_bits,
460 divider = find_best_divider(divider_bits, pll_rate[parent],
465 assert(divider >= 0);
466 if (adjust_periph_pll(periph_id, source, mux_bits, divider))
468 debug("periph %d, rate=%d, reg=%p = %x\n", periph_id, rate,
469 get_periph_source_reg(periph_id),
470 readl(get_periph_source_reg(periph_id)));
472 /* Check what we ended up with. This shouldn't matter though */
473 effective_rate = clock_get_periph_rate(periph_id, parent);
475 effective_rate /= *extra_div;
476 if (rate != effective_rate)
477 debug("Requested clock rate %u not honored (got %u)\n",
478 rate, effective_rate);
479 return effective_rate;
482 unsigned clock_start_periph_pll(enum periph_id periph_id,
483 enum clock_id parent, unsigned rate)
485 unsigned effective_rate;
487 reset_set_enable(periph_id, 1);
488 clock_enable(periph_id);
491 effective_rate = clock_adjust_periph_pll_div(periph_id, parent, rate,
494 reset_set_enable(periph_id, 0);
495 return effective_rate;
498 void clock_enable(enum periph_id clkid)
500 clock_set_enable(clkid, 1);
503 void clock_disable(enum periph_id clkid)
505 clock_set_enable(clkid, 0);
508 void reset_periph(enum periph_id periph_id, int us_delay)
510 /* Put peripheral into reset */
511 reset_set_enable(periph_id, 1);
515 reset_set_enable(periph_id, 0);
520 void reset_cmplx_set_enable(int cpu, int which, int reset)
522 struct clk_rst_ctlr *clkrst =
523 (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
526 /* Form the mask, which depends on the cpu chosen (2 or 4) */
527 assert(cpu >= 0 && cpu < MAX_NUM_CPU);
530 /* either enable or disable those reset for that CPU */
532 writel(mask, &clkrst->crc_cpu_cmplx_set);
534 writel(mask, &clkrst->crc_cpu_cmplx_clr);
537 unsigned int __weak clk_m_get_rate(unsigned int parent_rate)
542 unsigned clock_get_rate(enum clock_id clkid)
544 struct clk_pll *pll = NULL;
545 struct clk_pll_simple *simple_pll = NULL;
547 u64 parent_rate, rate;
548 struct clk_pll_info *pllinfo = &tegra_pll_info_table[clkid];
550 parent_rate = osc_freq[clock_get_osc_freq()];
551 if (clkid == CLOCK_ID_OSC)
554 if (clkid == CLOCK_ID_CLK_M)
555 return clk_m_get_rate(parent_rate);
557 if (clkid < (enum clock_id)TEGRA_CLK_PLLS)
558 pll = get_pll(clkid);
560 simple_pll = clock_get_simple_pll(clkid);
562 if (!simple_pll && !pll) {
563 log_err("Unknown PLL id %d\n", clkid);
568 base = readl(&pll->pll_base);
570 base = readl(&simple_pll->pll_base);
572 rate = parent_rate * ((base >> pllinfo->n_shift) & pllinfo->n_mask);
573 divm = (base >> pllinfo->m_shift) & pllinfo->m_mask;
575 * PLLU uses p_mask/p_shift for VCO on all but T210,
576 * T210 uses normal DIVP. Handled in pllinfo table.
578 #ifdef CONFIG_TEGRA210
580 * PLLP's primary output (pllP_out0) on T210 is the VCO, and divp is
581 * not applied. pllP_out2 does have divp applied. All other pllP_outN
582 * are divided down from pllP_out0. We only support pllP_out0 in
583 * U-Boot at the time of writing this comment.
585 if (clkid != CLOCK_ID_PERIPH)
587 divm <<= (base >> pllinfo->p_shift) & pllinfo->p_mask;
593 * Set the output frequency you want for each PLL clock.
594 * PLL output frequencies are programmed by setting their N, M and P values.
595 * The governing equations are:
596 * VCO = (Fi / m) * n, Fo = VCO / (2^p)
597 * where Fo is the output frequency from the PLL.
598 * Example: Set the output frequency to 216Mhz(Fo) with 12Mhz OSC(Fi)
599 * 216Mhz = ((12Mhz / m) * n) / (2^p) so n=432,m=12,p=1
600 * Please see Tegra TRM section 5.3 to get the detail for PLL Programming
602 * @param n PLL feedback divider(DIVN)
603 * @param m PLL input divider(DIVN)
604 * @param p post divider(DIVP)
605 * @param cpcon base PLL charge pump(CPCON)
606 * Return: 0 if ok, -1 on error (the requested PLL is incorrect and cannot
607 * be overridden), 1 if PLL is already correct
609 int clock_set_rate(enum clock_id clkid, u32 n, u32 m, u32 p, u32 cpcon)
611 u32 base_reg, misc_reg;
612 struct clk_pll *pll = NULL;
613 struct clk_pll_simple *simple_pll = NULL;
614 struct clk_pll_info *pllinfo = &tegra_pll_info_table[clkid];
616 if (clkid < (enum clock_id)TEGRA_CLK_PLLS)
617 pll = get_pll(clkid);
619 simple_pll = clock_get_simple_pll(clkid);
621 if (!simple_pll && !pll) {
622 log_err("Unknown PLL id %d\n", clkid);
627 base_reg = readl(&pll->pll_base);
629 base_reg = readl(&simple_pll->pll_base);
631 /* Set BYPASS, m, n and p to PLL_BASE */
632 base_reg &= ~(pllinfo->m_mask << pllinfo->m_shift);
633 base_reg |= m << pllinfo->m_shift;
635 base_reg &= ~(pllinfo->n_mask << pllinfo->n_shift);
636 base_reg |= n << pllinfo->n_shift;
638 base_reg &= ~(pllinfo->p_mask << pllinfo->p_shift);
639 base_reg |= p << pllinfo->p_shift;
641 if (clkid == CLOCK_ID_PERIPH) {
643 * If the PLL is already set up, check that it is correct
644 * and record this info for clock_verify() to check.
646 if (base_reg & PLL_BASE_OVRRIDE_MASK) {
647 base_reg |= PLL_ENABLE_MASK;
648 if (base_reg != readl(&pll->pll_base))
650 return pllp_valid ? 1 : -1;
652 base_reg |= PLL_BASE_OVRRIDE_MASK;
655 base_reg |= PLL_BYPASS_MASK;
657 writel(base_reg, &pll->pll_base);
659 writel(base_reg, &simple_pll->pll_base);
661 /* Set cpcon (KCP) to PLL_MISC */
663 misc_reg = readl(&pll->pll_misc);
665 misc_reg = readl(&simple_pll->pll_misc);
667 misc_reg &= ~(pllinfo->kcp_mask << pllinfo->kcp_shift);
668 misc_reg |= cpcon << pllinfo->kcp_shift;
670 writel(misc_reg, &pll->pll_misc);
672 writel(misc_reg, &simple_pll->pll_misc);
675 base_reg |= PLL_ENABLE_MASK;
677 writel(base_reg, &pll->pll_base);
679 writel(base_reg, &simple_pll->pll_base);
682 base_reg &= ~PLL_BYPASS_MASK;
684 writel(base_reg, &pll->pll_base);
686 writel(base_reg, &simple_pll->pll_base);
691 void clock_ll_start_uart(enum periph_id periph_id)
693 /* Assert UART reset and enable clock */
694 reset_set_enable(periph_id, 1);
695 clock_enable(periph_id);
696 clock_ll_set_source(periph_id, 0); /* UARTx_CLK_SRC = 00, PLLP_OUT0 */
701 /* De-assert reset to UART */
702 reset_set_enable(periph_id, 0);
705 #if CONFIG_IS_ENABLED(OF_CONTROL)
706 int clock_decode_periph_id(struct udevice *dev)
712 err = dev_read_u32_array(dev, "clocks", cell, ARRAY_SIZE(cell));
715 id = clk_id_to_periph_id(cell[1]);
716 assert(clock_periph_id_isvalid(id));
721 * Get periph clock id and its parent from device tree.
723 * @param dev udevice associated with FDT node
724 * @param clk_id pointer to u32 array of 2 values
725 * first is periph clock, second is
726 * its PLL parent according to FDT.
728 int clock_decode_pair(struct udevice *dev, int *clk_id)
733 err = dev_read_u32_array(dev, "clocks", cell, ARRAY_SIZE(cell));
737 clk_id[0] = clk_id_to_periph_id(cell[1]);
738 clk_id[1] = clk_id_to_pll_id(cell[3]);
742 #endif /* CONFIG_IS_ENABLED(OF_CONTROL) */
744 int clock_verify(void)
746 struct clk_pll *pll = get_pll(CLOCK_ID_PERIPH);
747 u32 reg = readl(&pll->pll_base);
750 printf("Warning: PLLP %x is not correct\n", reg);
753 debug("PLLP %x is correct\n", reg);
757 void clock_init(void)
761 pll_rate[CLOCK_ID_CGENERAL] = clock_get_rate(CLOCK_ID_CGENERAL);
762 pll_rate[CLOCK_ID_MEMORY] = clock_get_rate(CLOCK_ID_MEMORY);
763 pll_rate[CLOCK_ID_PERIPH] = clock_get_rate(CLOCK_ID_PERIPH);
764 pll_rate[CLOCK_ID_USB] = clock_get_rate(CLOCK_ID_USB);
765 pll_rate[CLOCK_ID_DISPLAY] = clock_get_rate(CLOCK_ID_DISPLAY);
766 pll_rate[CLOCK_ID_XCPU] = clock_get_rate(CLOCK_ID_XCPU);
767 pll_rate[CLOCK_ID_SFROM32KHZ] = 32768;
768 pll_rate[CLOCK_ID_OSC] = clock_get_rate(CLOCK_ID_OSC);
769 pll_rate[CLOCK_ID_CLK_M] = clock_get_rate(CLOCK_ID_CLK_M);
770 #ifndef CONFIG_TEGRA20
771 pll_rate[CLOCK_ID_DISPLAY2] = clock_get_rate(CLOCK_ID_DISPLAY2);
774 debug("Osc = %d\n", pll_rate[CLOCK_ID_OSC]);
775 debug("CLKM = %d\n", pll_rate[CLOCK_ID_CLK_M]);
776 debug("PLLC = %d\n", pll_rate[CLOCK_ID_CGENERAL]);
777 debug("PLLM = %d\n", pll_rate[CLOCK_ID_MEMORY]);
778 debug("PLLP = %d\n", pll_rate[CLOCK_ID_PERIPH]);
779 debug("PLLU = %d\n", pll_rate[CLOCK_ID_USB]);
780 debug("PLLD = %d\n", pll_rate[CLOCK_ID_DISPLAY]);
781 debug("PLLX = %d\n", pll_rate[CLOCK_ID_XCPU]);
783 for (i = 0; periph_clk_init_table[i].periph_id != -1; i++) {
784 enum periph_id periph_id;
785 enum clock_id parent;
786 int source, mux_bits, divider_bits;
788 periph_id = periph_clk_init_table[i].periph_id;
789 parent = periph_clk_init_table[i].parent_clock_id;
791 source = get_periph_clock_source(periph_id, parent, &mux_bits,
793 clock_ll_set_source_bits(periph_id, mux_bits, source);
797 static void set_avp_clock_source(u32 src)
799 struct clk_rst_ctlr *clkrst =
800 (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
803 val = (src << SCLK_SWAKEUP_FIQ_SOURCE_SHIFT) |
804 (src << SCLK_SWAKEUP_IRQ_SOURCE_SHIFT) |
805 (src << SCLK_SWAKEUP_RUN_SOURCE_SHIFT) |
806 (src << SCLK_SWAKEUP_IDLE_SOURCE_SHIFT) |
807 (SCLK_SYS_STATE_RUN << SCLK_SYS_STATE_SHIFT);
808 writel(val, &clkrst->crc_sclk_brst_pol);
813 * This function is useful on Tegra30, and any later SoCs that have compatible
814 * PLLP configuration registers.
815 * NOTE: Not used on Tegra210 - see tegra210_setup_pllp in T210 clock.c
817 void tegra30_set_up_pllp(void)
819 struct clk_rst_ctlr *clkrst = (struct clk_rst_ctlr *)NV_PA_CLK_RST_BASE;
823 * Based on the Tegra TRM, the system clock (which is the AVP clock) can
824 * run up to 275MHz. On power on, the default sytem clock source is set
825 * to PLLP_OUT0. This function sets PLLP's (hence PLLP_OUT0's) rate to
826 * 408MHz which is beyond system clock's upper limit.
828 * The fix is to set the system clock to CLK_M before initializing PLLP,
829 * and then switch back to PLLP_OUT4, which has an appropriate divider
830 * configured, after PLLP has been configured
832 set_avp_clock_source(SCLK_SOURCE_CLKM);
835 * PLLP output frequency set to 408Mhz
836 * PLLC output frequency set to 228Mhz
838 switch (clock_get_osc_freq()) {
839 case CLOCK_OSC_FREQ_12_0: /* OSC is 12Mhz */
840 case CLOCK_OSC_FREQ_48_0: /* OSC is 48Mhz */
841 clock_set_rate(CLOCK_ID_PERIPH, 408, 12, 0, 8);
842 clock_set_rate(CLOCK_ID_CGENERAL, 456, 12, 1, 8);
845 case CLOCK_OSC_FREQ_26_0: /* OSC is 26Mhz */
846 clock_set_rate(CLOCK_ID_PERIPH, 408, 26, 0, 8);
847 clock_set_rate(CLOCK_ID_CGENERAL, 600, 26, 0, 8);
850 case CLOCK_OSC_FREQ_13_0: /* OSC is 13Mhz */
851 case CLOCK_OSC_FREQ_16_8: /* OSC is 16.8Mhz */
852 clock_set_rate(CLOCK_ID_PERIPH, 408, 13, 0, 8);
853 clock_set_rate(CLOCK_ID_CGENERAL, 600, 13, 0, 8);
856 case CLOCK_OSC_FREQ_19_2:
857 case CLOCK_OSC_FREQ_38_4:
860 * These are not supported. It is too early to print a
861 * message and the UART likely won't work anyway due to the
862 * oscillator being wrong.
867 /* Set PLLP_OUT1, 2, 3 & 4 freqs to 9.6, 48, 102 & 204MHz */
870 /* Assert RSTN before enable */
871 reg = PLLP_OUT2_RSTN_EN | PLLP_OUT1_RSTN_EN;
872 writel(reg, &clkrst->crc_pll[CLOCK_ID_PERIPH].pll_out[0]);
873 /* Set divisor and reenable */
874 reg = (IN_408_OUT_48_DIVISOR << PLLP_OUT2_RATIO)
875 | PLLP_OUT2_OVR | PLLP_OUT2_CLKEN | PLLP_OUT2_RSTN_DIS
876 | (IN_408_OUT_9_6_DIVISOR << PLLP_OUT1_RATIO)
877 | PLLP_OUT1_OVR | PLLP_OUT1_CLKEN | PLLP_OUT1_RSTN_DIS;
878 writel(reg, &clkrst->crc_pll[CLOCK_ID_PERIPH].pll_out[0]);
881 /* Assert RSTN before enable */
882 reg = PLLP_OUT4_RSTN_EN | PLLP_OUT3_RSTN_EN;
883 writel(reg, &clkrst->crc_pll[CLOCK_ID_PERIPH].pll_out[1]);
884 /* Set divisor and reenable */
885 reg = (IN_408_OUT_204_DIVISOR << PLLP_OUT4_RATIO)
886 | PLLP_OUT4_OVR | PLLP_OUT4_CLKEN | PLLP_OUT4_RSTN_DIS
887 | (IN_408_OUT_102_DIVISOR << PLLP_OUT3_RATIO)
888 | PLLP_OUT3_OVR | PLLP_OUT3_CLKEN | PLLP_OUT3_RSTN_DIS;
889 writel(reg, &clkrst->crc_pll[CLOCK_ID_PERIPH].pll_out[1]);
891 set_avp_clock_source(SCLK_SOURCE_PLLP_OUT4);
894 int clock_external_output(int clk_id)
898 if (clk_id >= 1 && clk_id <= 3) {
899 val = tegra_pmc_readl(offsetof(struct pmc_ctlr,
901 val |= 1 << (2 + (clk_id - 1) * 8);
902 tegra_pmc_writel(val,
903 offsetof(struct pmc_ctlr,
907 printf("%s: Unknown output clock id %d\n", __func__, clk_id);
914 __weak bool clock_early_init_done(void)