From patchwork Wed Oct 9 14:02:46 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Biju Das X-Patchwork-Id: 13828461 X-Patchwork-Delegate: geert@linux-m68k.org Received: from relmlie6.idc.renesas.com (relmlor2.renesas.com [210.160.252.172]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 02207199FDE; Wed, 9 Oct 2024 14:03:08 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=210.160.252.172 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728482591; cv=none; b=YFHGesbWqc5/p/Vycl4f/y/ebHRrSD7ei5Ju5c4bijqhEXZmNpq9OYkqUo0AvS8THwmWBOpqdE9/fkVb2SrB3qmEJ/YZD8dZdgHrYvNQWJBnSsj7ElbG+HOryUueGdrWMwHOtPZM+4kfmyCS+j12qOBehyzEUuPC1QG86UlxO9g= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728482591; c=relaxed/simple; bh=hJeZDcakfe3CkAuKBsUIafm3NiYmVbj0BnQvMMSUKJc=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=NEmGytomnaBsXrnvcSK0bVnjuNx+u6fRriajRSHkmpxV4faWW09jAtzR/b/1rc4wNOvTz4hXlYgjU+5SH0N3CWHVmpNeg3FAwjNevFrcgvkfE/qf5fyiYI1bVL5eHh8XFPt7HfS7w/ABUS97IK730G4s5tvWOMofS28bdd1c8n8= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=bp.renesas.com; spf=pass smtp.mailfrom=bp.renesas.com; arc=none smtp.client-ip=210.160.252.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=bp.renesas.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=bp.renesas.com X-IronPort-AV: E=Sophos;i="6.11,189,1725289200"; d="scan'208";a="225436968" Received: from unknown (HELO relmlir5.idc.renesas.com) ([10.200.68.151]) by relmlie6.idc.renesas.com with ESMTP; 09 Oct 2024 23:03:02 +0900 Received: from localhost.localdomain (unknown [10.226.93.118]) by relmlir5.idc.renesas.com (Postfix) with ESMTP id 238A24006DE9; Wed, 9 Oct 2024 23:02:53 +0900 (JST) From: Biju Das To: Michael Turquette , Stephen Boyd Cc: Biju Das , Geert Uytterhoeven , linux-renesas-soc@vger.kernel.org, linux-clk@vger.kernel.org, Prabhakar Mahadev Lad , Biju Das , Hien Huynh Subject: [PATCH] clk: renesas: rzg2l: Fix FOUTPOSTDIV clk Date: Wed, 9 Oct 2024 15:02:46 +0100 Message-ID: <20241009140251.135085-1-biju.das.jz@bp.renesas.com> X-Mailer: git-send-email 2.43.0 Precedence: bulk X-Mailing-List: linux-renesas-soc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 While computing foutpostdiv_rate, the value of params->pl5_fracin is discarded, which results in the wrong refresh rate. Fix the formula for computing foutpostdiv_rate. Fixes: 1561380ee72f ("clk: renesas: rzg2l: Add FOUTPOSTDIV clk support") Signed-off-by: Hien Huynh Signed-off-by: Biju Das --- Display resolution:1920x1080@60-->148.5 MHz dot clock Before applying patch: foutpostdiv_rate=1776000000 Dot clock = 1776000000/12 = 148 MHz After applying patch: foutpostdiv_rate=1782000000 Dot clock = 1782000000/12 = 148.5 MHz --- drivers/clk/renesas/rzg2l-cpg.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/drivers/clk/renesas/rzg2l-cpg.c b/drivers/clk/renesas/rzg2l-cpg.c index 88bf39e8c79c..58b7cbb24b5a 100644 --- a/drivers/clk/renesas/rzg2l-cpg.c +++ b/drivers/clk/renesas/rzg2l-cpg.c @@ -548,7 +548,7 @@ static unsigned long rzg2l_cpg_get_foutpostdiv_rate(struct rzg2l_pll5_param *params, unsigned long rate) { - unsigned long foutpostdiv_rate; + unsigned long foutpostdiv_rate, foutvco_rate; params->pl5_intin = rate / MEGA; params->pl5_fracin = div_u64(((u64)rate % MEGA) << 24, MEGA); @@ -557,10 +557,12 @@ rzg2l_cpg_get_foutpostdiv_rate(struct rzg2l_pll5_param *params, params->pl5_postdiv2 = 1; params->pl5_spread = 0x16; - foutpostdiv_rate = - EXTAL_FREQ_IN_MEGA_HZ * MEGA / params->pl5_refdiv * - ((((params->pl5_intin << 24) + params->pl5_fracin)) >> 24) / - (params->pl5_postdiv1 * params->pl5_postdiv2); + foutvco_rate = EXTAL_FREQ_IN_MEGA_HZ * MEGA / params->pl5_refdiv; + foutvco_rate = mul_u64_u32_shr(foutvco_rate, + (params->pl5_intin << 24) + params->pl5_fracin, + 24); + foutpostdiv_rate = DIV_ROUND_CLOSEST_ULL(foutvco_rate, + params->pl5_postdiv1 * params->pl5_postdiv2); return foutpostdiv_rate; }