projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
714dd3c
)
phy: mediatek: hdmi: mt8195: fix wrong pll calculus
author
Guillaume Ranquet
<granquet@baylibre.com>
Fri, 14 Apr 2023 16:07:47 +0000
(18:07 +0200)
committer
Vinod Koul
<vkoul@kernel.org>
Thu, 4 May 2023 17:42:11 +0000
(23:12 +0530)
The clock rate calculus in mtk_hdmi_pll_calc() was wrong when it has
been replaced by 'div_u64'.
Fix the issue by multiplying the values in the denominator instead of
dividing them.
Fixes: 45810d486bb44 ("phy: mediatek: add support for phy-mtk-hdmi-mt8195")
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Signed-off-by: Guillaume Ranquet <granquet@baylibre.com>
Link:
https://lore.kernel.org/r/20230413-fixes-for-mt8195-hdmi-phy-v2-2-bbad62e64321@baylibre.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c
patch
|
blob
|
history
diff --git
a/drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c
b/drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c
index 054b73cb31ee8f789c4acdc91cbc060082ca9bf6..caa953780beebb85a07fe2e582ad70fbfec43f55 100644
(file)
--- a/
drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c
+++ b/
drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c
@@
-271,7
+271,7
@@
static int mtk_hdmi_pll_calc(struct mtk_hdmi_phy *hdmi_phy, struct clk_hw *hw,
* [32,24] 9bit integer, [23,0]:24bit fraction
*/
pcw = div_u64(((u64)ns_hdmipll_ck) << PCW_DECIMAL_WIDTH,
- da_hdmitx21_ref_ck
/
PLL_FBKDIV_HS3);
+ da_hdmitx21_ref_ck
*
PLL_FBKDIV_HS3);
if (pcw > GENMASK_ULL(32, 0))
return -EINVAL;
@@
-288,7
+288,7
@@
static int mtk_hdmi_pll_calc(struct mtk_hdmi_phy *hdmi_phy, struct clk_hw *hw,
posdiv2 = 1;
/* Digital clk divider, max /32 */
- digital_div = div_u64(
(u64)ns_hdmipll_ck, posdiv1 / posdiv2 /
pixel_clk);
+ digital_div = div_u64(
ns_hdmipll_ck, posdiv1 * posdiv2 *
pixel_clk);
if (!(digital_div <= 32 && digital_div >= 1))
return -EINVAL;