mirror of
https://github.com/smaeul/u-boot.git
synced 2025-10-18 06:38:15 +01:00
ARM: imx: imx8m: Align PLL 1.2 GHz option with Linux
Linux uses slightly different divider settings for the 1.2 GHz PLL configuration, adjust the coefficients to match Linux. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Peng Fan <peng.fan@nxp.com> Cc: Stefano Babic <sbabic@denx.de>
This commit is contained in:
parent
1b7f00eb1f
commit
66e90be99f
@ -244,9 +244,9 @@ int intpll_configure(enum pll_clocks pll, ulong freq)
|
||||
INTPLL_PRE_DIV_VAL(3) | INTPLL_POST_DIV_VAL(1);
|
||||
break;
|
||||
case MHZ(1200):
|
||||
/* 24 * 0xc8 / 2 / 2 ^ 1 */
|
||||
pll_div_ctl_val = INTPLL_MAIN_DIV_VAL(0xc8) |
|
||||
INTPLL_PRE_DIV_VAL(2) | INTPLL_POST_DIV_VAL(1);
|
||||
/* 24 * 0x12c / 3 / 2 ^ 1 */
|
||||
pll_div_ctl_val = INTPLL_MAIN_DIV_VAL(0x12c) |
|
||||
INTPLL_PRE_DIV_VAL(3) | INTPLL_POST_DIV_VAL(1);
|
||||
break;
|
||||
case MHZ(2000):
|
||||
/* 24 * 0xfa / 3 / 2 ^ 0 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user