* [PATCH] clk: imx: pll14xx: Add 208 MHz and 416 MHz entries for PLL1416x
@ 2024-11-12 1:37 Marek Vasut
2024-11-12 9:33 ` Peng Fan
2024-12-27 12:46 ` Abel Vesa
0 siblings, 2 replies; 3+ messages in thread
From: Marek Vasut @ 2024-11-12 1:37 UTC (permalink / raw)
To: linux-clk
Cc: Marek Vasut, Abel Vesa, Fabio Estevam, Michael Turquette,
Peng Fan, Pengutronix Kernel Team, Sascha Hauer, Shawn Guo,
Stephen Boyd, imx, linux-arm-kernel, linux-kernel
The PLL1416x is used to implement SYS_PLL3 on i.MX8MP and can be used
to drive CLKOUTn clock. Add 208 MHz and 416 MHz entries to the PLL so
they can be generated by the PLL and used to produce e.g. 13 MHz or
26 MHz on CLKOUTn output.
Signed-off-by: Marek Vasut <marex@denx.de>
---
Cc: Abel Vesa <abelvesa@kernel.org>
Cc: Fabio Estevam <festevam@gmail.com>
Cc: Michael Turquette <mturquette@baylibre.com>
Cc: Peng Fan <peng.fan@nxp.com>
Cc: Pengutronix Kernel Team <kernel@pengutronix.de>
Cc: Sascha Hauer <s.hauer@pengutronix.de>
Cc: Shawn Guo <shawnguo@kernel.org>
Cc: Stephen Boyd <sboyd@kernel.org>
Cc: imx@lists.linux.dev
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-clk@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
---
drivers/clk/imx/clk-pll14xx.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/clk/imx/clk-pll14xx.c b/drivers/clk/imx/clk-pll14xx.c
index 19b9f764a0015..a69dd34431b03 100644
--- a/drivers/clk/imx/clk-pll14xx.c
+++ b/drivers/clk/imx/clk-pll14xx.c
@@ -56,7 +56,9 @@ static const struct imx_pll14xx_rate_table imx_pll1416x_tbl[] = {
PLL_1416X_RATE(700000000U, 350, 3, 2),
PLL_1416X_RATE(640000000U, 320, 3, 2),
PLL_1416X_RATE(600000000U, 300, 3, 2),
+ PLL_1416X_RATE(416000000U, 208, 3, 2),
PLL_1416X_RATE(320000000U, 160, 3, 2),
+ PLL_1416X_RATE(208000000U, 208, 3, 3),
};
static const struct imx_pll14xx_rate_table imx_pll1443x_tbl[] = {
--
2.45.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* RE: [PATCH] clk: imx: pll14xx: Add 208 MHz and 416 MHz entries for PLL1416x
2024-11-12 1:37 [PATCH] clk: imx: pll14xx: Add 208 MHz and 416 MHz entries for PLL1416x Marek Vasut
@ 2024-11-12 9:33 ` Peng Fan
2024-12-27 12:46 ` Abel Vesa
1 sibling, 0 replies; 3+ messages in thread
From: Peng Fan @ 2024-11-12 9:33 UTC (permalink / raw)
To: Marek Vasut, linux-clk@vger.kernel.org
Cc: Abel Vesa, Fabio Estevam, Michael Turquette,
Pengutronix Kernel Team, Sascha Hauer, Shawn Guo, Stephen Boyd,
imx@lists.linux.dev, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
> Subject: [PATCH] clk: imx: pll14xx: Add 208 MHz and 416 MHz entries
> for PLL1416x
>
> The PLL1416x is used to implement SYS_PLL3 on i.MX8MP and can be
> used to drive CLKOUTn clock. Add 208 MHz and 416 MHz entries to the
> PLL so they can be generated by the PLL and used to produce e.g. 13
> MHz or
> 26 MHz on CLKOUTn output.
>
> Signed-off-by: Marek Vasut <marex@denx.de>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] clk: imx: pll14xx: Add 208 MHz and 416 MHz entries for PLL1416x
2024-11-12 1:37 [PATCH] clk: imx: pll14xx: Add 208 MHz and 416 MHz entries for PLL1416x Marek Vasut
2024-11-12 9:33 ` Peng Fan
@ 2024-12-27 12:46 ` Abel Vesa
1 sibling, 0 replies; 3+ messages in thread
From: Abel Vesa @ 2024-12-27 12:46 UTC (permalink / raw)
To: linux-clk, Marek Vasut
Cc: Abel Vesa, Fabio Estevam, Michael Turquette, Peng Fan,
Pengutronix Kernel Team, Sascha Hauer, Shawn Guo, Stephen Boyd,
imx, linux-arm-kernel, linux-kernel
On Tue, 12 Nov 2024 02:37:35 +0100, Marek Vasut wrote:
> The PLL1416x is used to implement SYS_PLL3 on i.MX8MP and can be used
> to drive CLKOUTn clock. Add 208 MHz and 416 MHz entries to the PLL so
> they can be generated by the PLL and used to produce e.g. 13 MHz or
> 26 MHz on CLKOUTn output.
>
>
Applied, thanks!
[1/1] clk: imx: pll14xx: Add 208 MHz and 416 MHz entries for PLL1416x
commit: b7f67545ca9fa13f6e12debd68a92c1c664e2e3b
Best regards,
--
Abel Vesa <abel.vesa@linaro.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-12-27 12:46 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-12 1:37 [PATCH] clk: imx: pll14xx: Add 208 MHz and 416 MHz entries for PLL1416x Marek Vasut
2024-11-12 9:33 ` Peng Fan
2024-12-27 12:46 ` Abel Vesa
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox