Skip to content

Commit 044034e

Browse files
MrVanabelvesa
authored andcommitted
clk: imx: clk-fracn-gppll: fix mfd value
According to spec: A value of 0 is disallowed and should not be programmed in this register Fix to 1. Fixes: 1b26cb8 ("clk: imx: support fracn gppll") Signed-off-by: Peng Fan <[email protected]> Reviewed-by: Jacky Bai <[email protected]> Reviewed-by: Abel Vesa <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Abel Vesa <[email protected]>
1 parent ebb4f1e commit 044034e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

drivers/clk/imx/clk-fracn-gppll.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ struct clk_fracn_gppll {
6464
* Fout = Fvco / (rdiv * odiv)
6565
*/
6666
static const struct imx_fracn_gppll_rate_table fracn_tbl[] = {
67-
PLL_FRACN_GP(650000000U, 81, 0, 0, 0, 3),
68-
PLL_FRACN_GP(594000000U, 198, 0, 0, 0, 8),
69-
PLL_FRACN_GP(560000000U, 70, 0, 0, 0, 3),
70-
PLL_FRACN_GP(400000000U, 50, 0, 0, 0, 3),
67+
PLL_FRACN_GP(650000000U, 81, 0, 1, 0, 3),
68+
PLL_FRACN_GP(594000000U, 198, 0, 1, 0, 8),
69+
PLL_FRACN_GP(560000000U, 70, 0, 1, 0, 3),
70+
PLL_FRACN_GP(400000000U, 50, 0, 1, 0, 3),
7171
PLL_FRACN_GP(393216000U, 81, 92, 100, 0, 5)
7272
};
7373

0 commit comments

Comments
 (0)