linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] phy: mediatek: rework the floating point comparisons to fixed point
@ 2023-05-02 14:50 Tom Rix
  2023-05-04  7:53 ` Chunfeng Yun (云春峰)
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Tom Rix @ 2023-05-02 14:50 UTC (permalink / raw)
  To: chunkuang.hu, p.zabel, chunfeng.yun, vkoul, kishon, matthias.bgg,
	angelogioacchino.delregno
  Cc: dri-devel, linux-mediatek, linux-arm-kernel, linux-phy,
	linux-kernel, Tom Rix

gcc on aarch64 reports
drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c: In function ‘mtk_hdmi_pll_set_rate’:
drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c:240:52: error: ‘-mgeneral-regs-only’
  is incompatible with the use of floating-point types
  240 |         else if (tmds_clk >= 54 * MEGA && tmds_clk < 148.35 * MEGA)

Floating point should not be used, so rework the floating point comparisons
to fixed point.

Signed-off-by: Tom Rix <trix@redhat.com>
---
v2: silence robot by casting types to u64

---
drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c b/drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c
index abfc077fb0a8..093c4d1da557 100644
--- a/drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c
+++ b/drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c
@@ -237,11 +237,11 @@ static int mtk_hdmi_pll_calc(struct mtk_hdmi_phy *hdmi_phy, struct clk_hw *hw,
 	 */
 	if (tmds_clk < 54 * MEGA)
 		txposdiv = 8;
-	else if (tmds_clk >= 54 * MEGA && tmds_clk < 148.35 * MEGA)
+	else if (tmds_clk >= 54 * MEGA && (tmds_clk * 100) < 14835 * MEGA)
 		txposdiv = 4;
-	else if (tmds_clk >= 148.35 * MEGA && tmds_clk < 296.7 * MEGA)
+	else if ((tmds_clk * 100) >= 14835 * MEGA && (tmds_clk * 10) < 2967 * MEGA)
 		txposdiv = 2;
-	else if (tmds_clk >= 296.7 * MEGA && tmds_clk <= 594 * MEGA)
+	else if ((tmds_clk * 10) >= 2967 * MEGA && tmds_clk <= 594 * MEGA)
 		txposdiv = 1;
 	else
 		return -EINVAL;
@@ -328,12 +328,12 @@ static int mtk_hdmi_pll_drv_setting(struct clk_hw *hw)
 		clk_channel_bias = 0x34; /* 20mA */
 		impedance_en = 0xf;
 		impedance = 0x36; /* 100ohm */
-	} else if (pixel_clk >= 74.175 * MEGA && pixel_clk <= 300 * MEGA) {
+	} else if (((u64)pixel_clk * 1000) >= 74175 * MEGA && pixel_clk <= 300 * MEGA) {
 		data_channel_bias = 0x34; /* 20mA */
 		clk_channel_bias = 0x2c; /* 16mA */
 		impedance_en = 0xf;
 		impedance = 0x36; /* 100ohm */
-	} else if (pixel_clk >= 27 * MEGA && pixel_clk < 74.175 * MEGA) {
+	} else if (pixel_clk >= 27 * MEGA && ((u64)pixel_clk * 1000) < 74175 * MEGA) {
 		data_channel_bias = 0x14; /* 10mA */
 		clk_channel_bias = 0x14; /* 10mA */
 		impedance_en = 0x0;
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] phy: mediatek: rework the floating point comparisons to fixed point
  2023-05-02 14:50 [PATCH v2] phy: mediatek: rework the floating point comparisons to fixed point Tom Rix
@ 2023-05-04  7:53 ` Chunfeng Yun (云春峰)
  2023-05-08  8:57 ` Matthias Brugger
  2023-05-16 14:18 ` Vinod Koul
  2 siblings, 0 replies; 4+ messages in thread
From: Chunfeng Yun (云春峰) @ 2023-05-04  7:53 UTC (permalink / raw)
  To: p.zabel, matthias.bgg, vkoul, trix, chunkuang.hu, kishon,
	angelogioacchino.delregno
  Cc: dri-devel, linux-arm-kernel, linux-mediatek, linux-phy, linux-kernel

On Tue, 2023-05-02 at 10:50 -0400, Tom Rix wrote:
> External email : Please do not click links or open attachments until
> you have verified the sender or the content.
> 
> 
> gcc on aarch64 reports
> drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c: In function
> ‘mtk_hdmi_pll_set_rate’:
> drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c:240:52: error: ‘-mgeneral-
> regs-only’
>   is incompatible with the use of floating-point types
>   240 |         else if (tmds_clk >= 54 * MEGA && tmds_clk < 148.35 *
> MEGA)
> 
> Floating point should not be used, so rework the floating point
> comparisons
> to fixed point.
> 
> Signed-off-by: Tom Rix <trix@redhat.com>
> ---
> v2: silence robot by casting types to u64
> 
> ---
> drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c
> b/drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c
> index abfc077fb0a8..093c4d1da557 100644
> --- a/drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c
> +++ b/drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c
> @@ -237,11 +237,11 @@ static int mtk_hdmi_pll_calc(struct
> mtk_hdmi_phy *hdmi_phy, struct clk_hw *hw,
>          */
>         if (tmds_clk < 54 * MEGA)
>                 txposdiv = 8;
> -       else if (tmds_clk >= 54 * MEGA && tmds_clk < 148.35 * MEGA)
> +       else if (tmds_clk >= 54 * MEGA && (tmds_clk * 100) < 14835 *
> MEGA)
>                 txposdiv = 4;
> -       else if (tmds_clk >= 148.35 * MEGA && tmds_clk < 296.7 *
> MEGA)
> +       else if ((tmds_clk * 100) >= 14835 * MEGA && (tmds_clk * 10)
> < 2967 * MEGA)
>                 txposdiv = 2;
> -       else if (tmds_clk >= 296.7 * MEGA && tmds_clk <= 594 * MEGA)
> +       else if ((tmds_clk * 10) >= 2967 * MEGA && tmds_clk <= 594 *
> MEGA)
>                 txposdiv = 1;
>         else
>                 return -EINVAL;
> @@ -328,12 +328,12 @@ static int mtk_hdmi_pll_drv_setting(struct
> clk_hw *hw)
>                 clk_channel_bias = 0x34; /* 20mA */
>                 impedance_en = 0xf;
>                 impedance = 0x36; /* 100ohm */
> -       } else if (pixel_clk >= 74.175 * MEGA && pixel_clk <= 300 *
> MEGA) {
> +       } else if (((u64)pixel_clk * 1000) >= 74175 * MEGA &&
> pixel_clk <= 300 * MEGA) {
>                 data_channel_bias = 0x34; /* 20mA */
>                 clk_channel_bias = 0x2c; /* 16mA */
>                 impedance_en = 0xf;
>                 impedance = 0x36; /* 100ohm */
> -       } else if (pixel_clk >= 27 * MEGA && pixel_clk < 74.175 *
> MEGA) {
> +       } else if (pixel_clk >= 27 * MEGA && ((u64)pixel_clk * 1000)
> < 74175 * MEGA) {
>                 data_channel_bias = 0x14; /* 10mA */
>                 clk_channel_bias = 0x14; /* 10mA */
>                 impedance_en = 0x0;
> --
> 2.27.0

Reviewed-by: Chunfeng Yun <chunfeng.yun@mediatek.com>

Thanks
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] phy: mediatek: rework the floating point comparisons to fixed point
  2023-05-02 14:50 [PATCH v2] phy: mediatek: rework the floating point comparisons to fixed point Tom Rix
  2023-05-04  7:53 ` Chunfeng Yun (云春峰)
@ 2023-05-08  8:57 ` Matthias Brugger
  2023-05-16 14:18 ` Vinod Koul
  2 siblings, 0 replies; 4+ messages in thread
From: Matthias Brugger @ 2023-05-08  8:57 UTC (permalink / raw)
  To: Tom Rix, chunkuang.hu, p.zabel, chunfeng.yun, vkoul, kishon,
	angelogioacchino.delregno
  Cc: dri-devel, linux-mediatek, linux-arm-kernel, linux-phy, linux-kernel



On 02/05/2023 16:50, Tom Rix wrote:
> gcc on aarch64 reports
> drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c: In function ‘mtk_hdmi_pll_set_rate’:
> drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c:240:52: error: ‘-mgeneral-regs-only’
>    is incompatible with the use of floating-point types
>    240 |         else if (tmds_clk >= 54 * MEGA && tmds_clk < 148.35 * MEGA)
> 
> Floating point should not be used, so rework the floating point comparisons
> to fixed point.
> 
> Signed-off-by: Tom Rix <trix@redhat.com>

I think this is worth a fixes tag.

Regards,
Matthias

> ---
> v2: silence robot by casting types to u64
> 
> ---
> drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c | 10 +++++-----
>   1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c b/drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c
> index abfc077fb0a8..093c4d1da557 100644
> --- a/drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c
> +++ b/drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c
> @@ -237,11 +237,11 @@ static int mtk_hdmi_pll_calc(struct mtk_hdmi_phy *hdmi_phy, struct clk_hw *hw,
>   	 */
>   	if (tmds_clk < 54 * MEGA)
>   		txposdiv = 8;
> -	else if (tmds_clk >= 54 * MEGA && tmds_clk < 148.35 * MEGA)
> +	else if (tmds_clk >= 54 * MEGA && (tmds_clk * 100) < 14835 * MEGA)
>   		txposdiv = 4;
> -	else if (tmds_clk >= 148.35 * MEGA && tmds_clk < 296.7 * MEGA)
> +	else if ((tmds_clk * 100) >= 14835 * MEGA && (tmds_clk * 10) < 2967 * MEGA)
>   		txposdiv = 2;
> -	else if (tmds_clk >= 296.7 * MEGA && tmds_clk <= 594 * MEGA)
> +	else if ((tmds_clk * 10) >= 2967 * MEGA && tmds_clk <= 594 * MEGA)
>   		txposdiv = 1;
>   	else
>   		return -EINVAL;
> @@ -328,12 +328,12 @@ static int mtk_hdmi_pll_drv_setting(struct clk_hw *hw)
>   		clk_channel_bias = 0x34; /* 20mA */
>   		impedance_en = 0xf;
>   		impedance = 0x36; /* 100ohm */
> -	} else if (pixel_clk >= 74.175 * MEGA && pixel_clk <= 300 * MEGA) {
> +	} else if (((u64)pixel_clk * 1000) >= 74175 * MEGA && pixel_clk <= 300 * MEGA) {
>   		data_channel_bias = 0x34; /* 20mA */
>   		clk_channel_bias = 0x2c; /* 16mA */
>   		impedance_en = 0xf;
>   		impedance = 0x36; /* 100ohm */
> -	} else if (pixel_clk >= 27 * MEGA && pixel_clk < 74.175 * MEGA) {
> +	} else if (pixel_clk >= 27 * MEGA && ((u64)pixel_clk * 1000) < 74175 * MEGA) {
>   		data_channel_bias = 0x14; /* 10mA */
>   		clk_channel_bias = 0x14; /* 10mA */
>   		impedance_en = 0x0;

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] phy: mediatek: rework the floating point comparisons to fixed point
  2023-05-02 14:50 [PATCH v2] phy: mediatek: rework the floating point comparisons to fixed point Tom Rix
  2023-05-04  7:53 ` Chunfeng Yun (云春峰)
  2023-05-08  8:57 ` Matthias Brugger
@ 2023-05-16 14:18 ` Vinod Koul
  2 siblings, 0 replies; 4+ messages in thread
From: Vinod Koul @ 2023-05-16 14:18 UTC (permalink / raw)
  To: Tom Rix
  Cc: chunkuang.hu, p.zabel, chunfeng.yun, kishon, matthias.bgg,
	angelogioacchino.delregno, dri-devel, linux-mediatek,
	linux-arm-kernel, linux-phy, linux-kernel

On 02-05-23, 10:50, Tom Rix wrote:
> gcc on aarch64 reports
> drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c: In function ‘mtk_hdmi_pll_set_rate’:
> drivers/phy/mediatek/phy-mtk-hdmi-mt8195.c:240:52: error: ‘-mgeneral-regs-only’
>   is incompatible with the use of floating-point types
>   240 |         else if (tmds_clk >= 54 * MEGA && tmds_clk < 148.35 * MEGA)
> 
> Floating point should not be used, so rework the floating point comparisons
> to fixed point.

Applied, thanks

-- 
~Vinod

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-05-16 14:19 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-02 14:50 [PATCH v2] phy: mediatek: rework the floating point comparisons to fixed point Tom Rix
2023-05-04  7:53 ` Chunfeng Yun (云春峰)
2023-05-08  8:57 ` Matthias Brugger
2023-05-16 14:18 ` Vinod Koul

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).