From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 2AC0246D0AD; Tue, 21 Jul 2026 18:59:56 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784660397; cv=none; b=cbu6A3volg1D+NT2GUJ9DW9ARyh9Qbsv4glGjXto1ve9GDCGcUeoy/ewhdEt0XWIrmXKhANfrszbIuNxKGCGU6ILodomfOx+57z2reioZXnOKPlZMiylAWv8laTfUKYytMf23Et+nJdoJPfcstNwZFB6pS0dBvVUj9XfyKXvvvk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784660397; c=relaxed/simple; bh=o0V78WGIEmAHN8UYFD3chCdwA7cwsJxzWrJe7OfE96M=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=fYRfj8yH2+bMfHrKEXIZuS/sIVTvkhxuC1w3W+KJG0wOF5ls88Gp5wgFtyn7BpW7vpMqRNCzT6ppXc6QG6/EMmiSqWrJoA3hQpu1tymXfmUw7hL4ZW2SWevDtT4SgceCOcjmYRMvDHdQCRIegl58COofKnAadjVL/7l+DByp66g= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=V3DD3Din; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="V3DD3Din" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 889401F000E9; Tue, 21 Jul 2026 18:59:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784660396; bh=Mb6p5OBq9dMk1U2zi7pXkcjLoXZZxkSkFTe8gq6VPKI=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=V3DD3Din90EEdru9kNYEM6bfouzVyaoXJSO2ZtASVyhax1IXbeAA4x55vnLhy0Nmp xxpGmiiNz/w56GlZwVDOAsY6/KbUjfD9sYqm6s1bLRjISb9OR4PcVWEOJjpirD3OH3 SPmV/Roecar3oewvDhsg8vsGHEvxXweZKinUdQ5w= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Phillip Varney , Konrad Dybcio , Dmitry Baryshkov , Bjorn Andersson , Sasha Levin Subject: [PATCH 7.1 0962/2077] clk: qcom: a53: Corrected frequency multiplier for 1152MHz Date: Tue, 21 Jul 2026 17:10:35 +0200 Message-ID: <20260721152615.512482366@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152552.646164743@linuxfoundation.org> References: <20260721152552.646164743@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 7.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Phillip Varney [ Upstream commit bb56147ea9fce98ebde1d367335ba006cba61fbd ] The 1152MHz frequency entry for the a53 currently selects a multiplier of 62, giving 1190MHz. This changes the mulitiplier to 60 giving the intended 1152MHz. Signed-off-by: Phillip Varney Reviewed-by: Konrad Dybcio Fixes: 0c6ab1b8f894 ("clk: qcom: Add A53 PLL support") Reviewed-by: Dmitry Baryshkov Link: https://lore.kernel.org/r/20260605005502.313928-1-pbvarney@protonmail.com Signed-off-by: Bjorn Andersson Signed-off-by: Sasha Levin --- drivers/clk/qcom/a53-pll.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/qcom/a53-pll.c b/drivers/clk/qcom/a53-pll.c index 724a642311e50b..0549b214fcfc8b 100644 --- a/drivers/clk/qcom/a53-pll.c +++ b/drivers/clk/qcom/a53-pll.c @@ -20,7 +20,7 @@ static const struct pll_freq_tbl a53pll_freq[] = { { 998400000, 52, 0x0, 0x1, 0 }, { 1094400000, 57, 0x0, 0x1, 0 }, - { 1152000000, 62, 0x0, 0x1, 0 }, + { 1152000000, 60, 0x0, 0x1, 0 }, { 1209600000, 63, 0x0, 0x1, 0 }, { 1248000000, 65, 0x0, 0x1, 0 }, { 1363200000, 71, 0x0, 0x1, 0 }, -- 2.53.0