From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 B7BC464A80; Tue, 23 Jan 2024 00:54:32 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1705971272; cv=none; b=rJz5OK54LtmD35bTOD6uvPqPEYOzSi9vvWRU2rpuQ+e7cy/N8RpdFpde0XBlFcJrsHW+6Ilk+LH40tZCv1E+jS2Mh8818SxqkURm5C3E9hk71RJ5/CE0BlBV7W7i3K7EMugApw/oU2Vlcnvpsd0H/8WzaVTUOyu/c6vMEiIenuI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1705971272; c=relaxed/simple; bh=AkOtkTD5EXIAWxoziTOzEfaARwuJMM4vxzPRL1WqBdE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=RjJKNRvFVXoOgzOV502K8J0Ww4Cemv5By3UU3dvBGG9S8Wu6s9EfqJf2o0ac2OD86MdDp6HB/bWB6IakR6cRWSal2rukgCqvAmKUi0ECY4v8LrcKJUUc/93CcMFsrzsE/YM/OPxGTvoDqyjmkGDbEgsP8BKQam1S7B6288FdCjU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=poKGXVRY; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="poKGXVRY" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8DA21C433C7; Tue, 23 Jan 2024 00:54:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1705971272; bh=AkOtkTD5EXIAWxoziTOzEfaARwuJMM4vxzPRL1WqBdE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=poKGXVRYP/2gSvpEG3Rozqog7c/eugiiIkvt7Vh9ydN/JJkAhg7pi4zw2i4lgiZed Fkl4qwSHwAZgZgRK3mI6VkdsTaBY36pEYISPX0S+UhxlGDazRQEz4sIDJyVMCD4kYe T+IcaixyzIvTq7e1lYoBkJaiZgdrtetkpuiQsdFw= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Satya Priya Kakitapalli , Konrad Dybcio , Bjorn Andersson , Sasha Levin Subject: [PATCH 6.1 193/417] clk: qcom: gpucc-sm8150: Update the gpu_cc_pll1 config Date: Mon, 22 Jan 2024 15:56:01 -0800 Message-ID: <20240122235758.613672627@linuxfoundation.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240122235751.480367507@linuxfoundation.org> References: <20240122235751.480367507@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Satya Priya Kakitapalli [ Upstream commit 6ebd9a4f8b8d2b35cf965a04849c4ba763722f13 ] Update the test_ctl_hi_val and test_ctl_hi1_val of gpu_cc_pll1 as per latest HW recommendation. Fixes: 0cef71f2ccc8 ("clk: qcom: Add graphics clock controller driver for SM8150") Signed-off-by: Satya Priya Kakitapalli Reviewed-by: Konrad Dybcio Link: https://lore.kernel.org/r/20231122042814.4158076-1-quic_skakitap@quicinc.com Signed-off-by: Bjorn Andersson Signed-off-by: Sasha Levin --- drivers/clk/qcom/gpucc-sm8150.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/clk/qcom/gpucc-sm8150.c b/drivers/clk/qcom/gpucc-sm8150.c index 8422fd047493..c89a5b59ddb7 100644 --- a/drivers/clk/qcom/gpucc-sm8150.c +++ b/drivers/clk/qcom/gpucc-sm8150.c @@ -37,8 +37,8 @@ static struct alpha_pll_config gpu_cc_pll1_config = { .config_ctl_hi_val = 0x00002267, .config_ctl_hi1_val = 0x00000024, .test_ctl_val = 0x00000000, - .test_ctl_hi_val = 0x00000002, - .test_ctl_hi1_val = 0x00000000, + .test_ctl_hi_val = 0x00000000, + .test_ctl_hi1_val = 0x00000020, .user_ctl_val = 0x00000000, .user_ctl_hi_val = 0x00000805, .user_ctl_hi1_val = 0x000000d0, -- 2.43.0