Skip to content
Snippets Groups Projects
Commit d94c2dbd authored by Tom Warren's avatar Tom Warren
Browse files

Tegra: Fix MSELECT clock divisors for T30/T114.


A comparison of registers between our internal NV U-Boot and
u-boot-tegra/next showed some discrepancies in the MSELECT
clock divisor programming. T20 doesn't have a MSELECT clk src reg.

Signed-off-by: default avatarTom Warren <twarren@nvidia.com>
Reviewed-by: default avatarStephen Warren <swarren@nvidia.com>
parent b40f734a
No related merge requests found
...@@ -170,15 +170,13 @@ void t114_init_clocks(void) ...@@ -170,15 +170,13 @@ void t114_init_clocks(void)
clock_set_enable(PERIPH_ID_MC1, 1); clock_set_enable(PERIPH_ID_MC1, 1);
clock_set_enable(PERIPH_ID_DVFS, 1); clock_set_enable(PERIPH_ID_DVFS, 1);
/* Switch MSELECT clock to PLLP (00) */
clock_ll_set_source(PERIPH_ID_MSELECT, 0);
/* /*
* Clock divider request for 102MHz would setup MSELECT clock as * Set MSELECT clock source as PLLP (00), and ask for a clock
* 102MHz for PLLP base 408MHz * divider that would set the MSELECT clock at 102MHz for a
* PLLP base of 408MHz.
*/ */
clock_ll_set_source_divisor(PERIPH_ID_MSELECT, 0, clock_ll_set_source_divisor(PERIPH_ID_MSELECT, 0,
(NVBL_PLLP_KHZ/102000)); CLK_DIVIDER(NVBL_PLLP_KHZ, 102000));
/* I2C5 (DVC) gets CLK_M and a divisor of 17 */ /* I2C5 (DVC) gets CLK_M and a divisor of 17 */
clock_ll_set_source_divisor(PERIPH_ID_I2C5, 3, 16); clock_ll_set_source_divisor(PERIPH_ID_I2C5, 3, 16);
......
...@@ -110,8 +110,8 @@ void t30_init_clocks(void) ...@@ -110,8 +110,8 @@ void t30_init_clocks(void)
reset_set_enable(PERIPH_ID_MSELECT, 1); reset_set_enable(PERIPH_ID_MSELECT, 1);
clock_set_enable(PERIPH_ID_MSELECT, 1); clock_set_enable(PERIPH_ID_MSELECT, 1);
/* Switch MSELECT clock to PLLP (00) */ /* Switch MSELECT clock to PLLP (00) and use a divisor of 2 */
clock_ll_set_source(PERIPH_ID_MSELECT, 0); clock_ll_set_source_divisor(PERIPH_ID_MSELECT, 0, 2);
/* /*
* Our high-level clock routines are not available prior to * Our high-level clock routines are not available prior to
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment