From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 68674C43334 for ; Tue, 12 Jul 2022 16:12:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231395AbiGLQMV (ORCPT ); Tue, 12 Jul 2022 12:12:21 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55644 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234266AbiGLQMU (ORCPT ); Tue, 12 Jul 2022 12:12:20 -0400 Received: from relay05.th.seeweb.it (relay05.th.seeweb.it [IPv6:2001:4b7a:2000:18::166]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 44F2A59275 for ; Tue, 12 Jul 2022 09:12:20 -0700 (PDT) Received: from [192.168.1.101] (abxj14.neoplus.adsl.tpnet.pl [83.9.3.14]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by m-r2.th.seeweb.it (Postfix) with ESMTPSA id 225DA3ED29; Tue, 12 Jul 2022 18:12:16 +0200 (CEST) Message-ID: Date: Tue, 12 Jul 2022 18:12:13 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.11.0 Subject: Re: [PATCH 2/6] clk: qcom: gcc-msm8939: Add missing CAMSS CCI bus clock Content-Language: en-US To: Bryan O'Donoghue , bjorn.andersson@linaro.org, agross@kernel.org, mturquette@baylibre.com, sboyd@kernel.org Cc: linux-arm-msm@vger.kernel.org, linux-clk@vger.kernel.org References: <20220712125922.3461675-1-bryan.odonoghue@linaro.org> <20220712125922.3461675-3-bryan.odonoghue@linaro.org> From: Konrad Dybcio In-Reply-To: <20220712125922.3461675-3-bryan.odonoghue@linaro.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org On 12.07.2022 14:59, Bryan O'Donoghue wrote: > Standard CCI bus clock clocks are 19.2 MHz and 37.5 MHz. We already define > the 19.2 MHz but are missing the 37.5 MHz. > > See qcom kernel drivers/clk/qcom/clock-gcc-8936.c::ftbl_gcc_camss_cci_clk[] > > Signed-off-by: Bryan O'Donoghue > --- Reviewed-by: Konrad Dybcio Konrad > drivers/clk/qcom/gcc-msm8939.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/clk/qcom/gcc-msm8939.c b/drivers/clk/qcom/gcc-msm8939.c > index 628b476a5468e..6a3e2326c72a3 100644 > --- a/drivers/clk/qcom/gcc-msm8939.c > +++ b/drivers/clk/qcom/gcc-msm8939.c > @@ -1003,6 +1003,7 @@ static struct clk_rcg2 blsp1_uart2_apps_clk_src = { > > static const struct freq_tbl ftbl_gcc_camss_cci_clk[] = { > F(19200000, P_XO, 1, 0, 0), > + F(37500000, P_GPLL0, 1, 3, 64), > { } > }; >