rockchip: backport upstream clk fixes for rk3568
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
This commit is contained in:
parent
041c7cc5cc
commit
54b367f6dc
@ -0,0 +1,26 @@
|
||||
From 7f890a885f9a226ae1309b967d4e6fac933610db Mon Sep 17 00:00:00 2001
|
||||
From: Alibek Omarov <a1ba.omarov@gmail.com>
|
||||
Date: Wed, 14 Jun 2023 16:47:16 +0300
|
||||
Subject: [PATCH] clk: rockchip: rk3568: Add PLL rate for 101MHz
|
||||
|
||||
This patch adds PLL setting for not so common resolution as 1920x720-50.00,
|
||||
which can be set using 2500 horizontal signals and 808 vertical.
|
||||
|
||||
Signed-off-by: Alibek Omarov <a1ba.omarov@gmail.com>
|
||||
Reviewed-by: Sascha Hauer <s.hauer@pengutronix.de>
|
||||
Link: https://lore.kernel.org/r/20230614134716.1055862-1-a1ba.omarov@gmail.com
|
||||
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
|
||||
---
|
||||
drivers/clk/rockchip/clk-rk3568.c | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
--- a/drivers/clk/rockchip/clk-rk3568.c
|
||||
+++ b/drivers/clk/rockchip/clk-rk3568.c
|
||||
@@ -79,6 +79,7 @@ static struct rockchip_pll_rate_table rk
|
||||
RK3036_PLL_RATE(135000000, 2, 45, 4, 1, 1, 0),
|
||||
RK3036_PLL_RATE(119000000, 3, 119, 4, 2, 1, 0),
|
||||
RK3036_PLL_RATE(108000000, 2, 45, 5, 1, 1, 0),
|
||||
+ RK3036_PLL_RATE(101000000, 1, 101, 6, 4, 1, 0),
|
||||
RK3036_PLL_RATE(100000000, 1, 150, 6, 6, 1, 0),
|
||||
RK3036_PLL_RATE(96000000, 1, 96, 6, 4, 1, 0),
|
||||
RK3036_PLL_RATE(78750000, 1, 96, 6, 4, 1, 0),
|
||||
@ -0,0 +1,31 @@
|
||||
From dafebd0f9a4f56b10d7fbda0bff1f540d16a2ea4 Mon Sep 17 00:00:00 2001
|
||||
From: Alibek Omarov <a1ba.omarov@gmail.com>
|
||||
Date: Wed, 14 Jun 2023 16:47:50 +0300
|
||||
Subject: [PATCH] clk: rockchip: rk3568: Fix PLL rate setting for 78.75MHz
|
||||
|
||||
PLL rate on RK356x is calculated through the simple formula:
|
||||
((24000000 / _refdiv) * _fbdiv) / (_postdiv1 * _postdiv2)
|
||||
|
||||
The PLL rate setting for 78.75MHz seems to be copied from 96MHz
|
||||
so this patch fixes it and configures it properly.
|
||||
|
||||
Signed-off-by: Alibek Omarov <a1ba.omarov@gmail.com>
|
||||
Fixes: 842f4cb72639 ("clk: rockchip: Add more PLL rates for rk3568")
|
||||
Reviewed-by: Sascha Hauer <s.hauer@pengutronix.de>
|
||||
Link: https://lore.kernel.org/r/20230614134750.1056293-1-a1ba.omarov@gmail.com
|
||||
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
|
||||
---
|
||||
drivers/clk/rockchip/clk-rk3568.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
--- a/drivers/clk/rockchip/clk-rk3568.c
|
||||
+++ b/drivers/clk/rockchip/clk-rk3568.c
|
||||
@@ -82,7 +82,7 @@ static struct rockchip_pll_rate_table rk
|
||||
RK3036_PLL_RATE(101000000, 1, 101, 6, 4, 1, 0),
|
||||
RK3036_PLL_RATE(100000000, 1, 150, 6, 6, 1, 0),
|
||||
RK3036_PLL_RATE(96000000, 1, 96, 6, 4, 1, 0),
|
||||
- RK3036_PLL_RATE(78750000, 1, 96, 6, 4, 1, 0),
|
||||
+ RK3036_PLL_RATE(78750000, 4, 315, 6, 4, 1, 0),
|
||||
RK3036_PLL_RATE(74250000, 2, 99, 4, 4, 1, 0),
|
||||
{ /* sentinel */ },
|
||||
};
|
||||
@ -0,0 +1,29 @@
|
||||
From 1af27671f62ce919f1fb76082ed81f71cb090989 Mon Sep 17 00:00:00 2001
|
||||
From: Chris Morgan <macromorgan@hotmail.com>
|
||||
Date: Wed, 18 Oct 2023 10:33:55 -0500
|
||||
Subject: [PATCH] clk: rockchip: rk3568: Add PLL rate for 292.5MHz
|
||||
|
||||
Add support for a PLL rate of 292.5MHz so that the Powkiddy RGB30 panel
|
||||
can run at a requested 60hz (59.96, close enough).
|
||||
|
||||
I have confirmed this rate fits with all the constraints
|
||||
listed in the TRM for the VPLL (as an integer PLL) in Part 1 "Chapter
|
||||
2 Clock & Reset Unit (CRU)."
|
||||
|
||||
Signed-off-by: Chris Morgan <macromorgan@hotmail.com>
|
||||
Link: https://lore.kernel.org/r/20231018153357.343142-2-macroalpha82@gmail.com
|
||||
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
|
||||
---
|
||||
drivers/clk/rockchip/clk-rk3568.c | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
--- a/drivers/clk/rockchip/clk-rk3568.c
|
||||
+++ b/drivers/clk/rockchip/clk-rk3568.c
|
||||
@@ -72,6 +72,7 @@ static struct rockchip_pll_rate_table rk
|
||||
RK3036_PLL_RATE(408000000, 1, 68, 2, 2, 1, 0),
|
||||
RK3036_PLL_RATE(312000000, 1, 78, 6, 1, 1, 0),
|
||||
RK3036_PLL_RATE(297000000, 2, 99, 4, 1, 1, 0),
|
||||
+ RK3036_PLL_RATE(292500000, 1, 195, 4, 4, 1, 0),
|
||||
RK3036_PLL_RATE(241500000, 2, 161, 4, 2, 1, 0),
|
||||
RK3036_PLL_RATE(216000000, 1, 72, 4, 2, 1, 0),
|
||||
RK3036_PLL_RATE(200000000, 1, 100, 3, 4, 1, 0),
|
||||
Loading…
Reference in New Issue
Block a user