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 A246412BF17; Tue, 23 Jan 2024 00:57:07 +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=1705971427; cv=none; b=AuwccWxGzq4vS77QMoeEDx5WvjVIOm9ddmE4OCJfmVc/ZVH66egx0RQV4E41fKtGPK7cTWYQxArrlzrGdIHE8QyVD8byIiXwv7Qy2G78qe9WHTj4yJldkzZSYgJox7XS4klAuu9r49aw/VdiFJkC6D+BICd52dWZGNo5gCGZs6U= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1705971427; c=relaxed/simple; bh=QsF8BXX3HOxnrYjT+cPGySH4j7S1YK7YNHBU5L4+XpQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=jcPpO9p9h4a7Czo6hCmH+n1zUwZJKS37rZHIUoRaje3hlEQ3HxNDn2lRUXe0rPxfKdYf5XTAuI8oRkZ1nkWt3+8DvzS8DvYv7Y93x2sckVqNeqeVp579yzJby2uPN1xgkF5RltKUbZMM+jqXJcf2py0HuWx80dpGeXilShNjypQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=wri16M7A; 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="wri16M7A" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 16182C433F1; Tue, 23 Jan 2024 00:57:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1705971427; bh=QsF8BXX3HOxnrYjT+cPGySH4j7S1YK7YNHBU5L4+XpQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=wri16M7AW8nc9s8RlBQDcaw24jt44tW7Z+Y06X01mCSJ3EbqcsjgO9R86HjHEa8nB 3lf/05qS0DTyweqhc6nnh0Mr6rNEZ3jj747FL7v8QA5zaVSepGGoM9QXQM8hYMiptc 4b5IEtzpk9d6PsR1IYmNvqQoXpZ6o5FejsfubxBQ= 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 217/417] clk: qcom: videocc-sm8150: Add missing PLL config property Date: Mon, 22 Jan 2024 15:56:25 -0800 Message-ID: <20240122235759.438781905@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: patches@lists.linux.dev 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 71f130c9193f613d497f7245365ed05ffdb0a401 ] When the driver was ported upstream, PLL test_ctl_hi1 register value was omitted. Add it to ensure the PLLs are fully configured. Fixes: 5658e8cf1a8a ("clk: qcom: add video clock controller driver for SM8150") Signed-off-by: Satya Priya Kakitapalli Reviewed-by: Konrad Dybcio Link: https://lore.kernel.org/r/20231201-videocc-8150-v3-3-56bec3a5e443@quicinc.com Signed-off-by: Bjorn Andersson Signed-off-by: Sasha Levin --- drivers/clk/qcom/videocc-sm8150.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clk/qcom/videocc-sm8150.c b/drivers/clk/qcom/videocc-sm8150.c index 6a5f89f53da8..52a9a453a143 100644 --- a/drivers/clk/qcom/videocc-sm8150.c +++ b/drivers/clk/qcom/videocc-sm8150.c @@ -33,6 +33,7 @@ static struct alpha_pll_config video_pll0_config = { .config_ctl_val = 0x20485699, .config_ctl_hi_val = 0x00002267, .config_ctl_hi1_val = 0x00000024, + .test_ctl_hi1_val = 0x00000020, .user_ctl_val = 0x00000000, .user_ctl_hi_val = 0x00000805, .user_ctl_hi1_val = 0x000000D0, -- 2.43.0