From d25924c5bf314a9563ee1a93ce5a73eeea5f4fc8 Mon Sep 17 00:00:00 2001 From: Fancy Fang <chen.fang@nxp.com> Date: Sat, 30 Mar 2019 22:47:54 +0800 Subject: [PATCH] MLK-21252 drm/bridge: sec-dsim: resolve OVERFLOW_BEFORE_WIDEN warns Coverity reports the 'OVERFLOW_BEFORE_WIDEN' warns which can cause potential expression overflow for multiplying two 32bit integers and assign the result to a 64bit integer, since no automatic integer type promotion exists before the multiply operation, so requires explicit type casting for either one of operands. Signed-off-by: Fancy Fang <chen.fang@nxp.com> --- drivers/gpu/drm/bridge/sec-dsim.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/bridge/sec-dsim.c b/drivers/gpu/drm/bridge/sec-dsim.c index 65457c8e886464..51bfc47b90cfe6 100644 --- a/drivers/gpu/drm/bridge/sec-dsim.c +++ b/drivers/gpu/drm/bridge/sec-dsim.c @@ -1190,10 +1190,10 @@ struct dsim_pll_pms *sec_mipi_dsim_calc_pmsk(struct sec_mipi_dsim *dsim) * Fvco: [1050MHz ~ 2100MHz] (Fvco = ((m + k / 65536) * Fin) / p) * So, m = Fvco * p / Fin and Fvco > Fin; */ - pfvco = fvco_range->min * prange->min; + pfvco = (uint64_t)fvco_range->min * prange->min; mrange->min = max_t(uint32_t, mrange->min, DIV_ROUND_UP_ULL(pfvco, fin)); - pfvco = fvco_range->max * prange->max; + pfvco = (uint64_t)fvco_range->max * prange->max; mrange->max = min_t(uint32_t, mrange->max, DIV_ROUND_UP_ULL(pfvco, fin)); @@ -1206,7 +1206,7 @@ struct dsim_pll_pms *sec_mipi_dsim_calc_pmsk(struct sec_mipi_dsim *dsim) /* first determine 'm', then can determine 'p', last determine 's' */ for (m = mrange->min; m <= mrange->max; m++) { /* p = m * Fin / Fvco */ - mfin = m * fin; + mfin = (uint64_t)m * fin; pr_new.min = max_t(uint32_t, prange->min, DIV_ROUND_UP_ULL(mfin, fvco_range->max)); pr_new.max = min_t(uint32_t, prange->max, @@ -1217,7 +1217,7 @@ struct dsim_pll_pms *sec_mipi_dsim_calc_pmsk(struct sec_mipi_dsim *dsim) for (p = pr_new.min; p <= pr_new.max; p++) { /* s = order_pow_of_two((m * Fin) / (p * Fout)) */ - pfout = p * fout; + pfout = (uint64_t)p * fout; raw_s = DIV_ROUND_CLOSEST_ULL(mfin, pfout); s_pow_2 = rounddown_pow_of_two(raw_s); -- GitLab