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 94BDEC43334 for ; Sat, 23 Jul 2022 10:27:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239439AbiGWK12 (ORCPT ); Sat, 23 Jul 2022 06:27:28 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39560 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S239434AbiGWK1P (ORCPT ); Sat, 23 Jul 2022 06:27:15 -0400 Received: from smtp.smtpout.orange.fr (smtp09.smtpout.orange.fr [80.12.242.131]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 7A1746C126 for ; Sat, 23 Jul 2022 03:23:17 -0700 (PDT) Received: from [192.168.1.18] ([90.11.190.129]) by smtp.orange.fr with ESMTPA id FCAfojRi96UQiFCAfo9DSp; Sat, 23 Jul 2022 12:15:45 +0200 X-ME-Helo: [192.168.1.18] X-ME-Auth: YWZlNiIxYWMyZDliZWIzOTcwYTEyYzlhMmU3ZiQ1M2U2MzfzZDfyZTMxZTBkMTYyNDBjNDJlZmQ3ZQ== X-ME-Date: Sat, 23 Jul 2022 12:15:45 +0200 X-ME-IP: 90.11.190.129 Message-ID: Date: Sat, 23 Jul 2022 12:15:40 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.9.1 Subject: Re: [PATCH v3 3/3] clk: qcom: Add global clock controller driver for SM6375 Content-Language: fr To: Konrad Dybcio , ~postmarketos/upstreaming@lists.sr.ht Cc: martin.botka@somainline.org, angelogioacchino.delregno@somainline.org, marijn.suijten@somainline.org, jamipkettunen@somainline.org, Bjorn Andersson , Andy Gross , Michael Turquette , Stephen Boyd , linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org, linux-clk@vger.kernel.org References: <20220723100135.91784-1-konrad.dybcio@somainline.org> <20220723100135.91784-3-konrad.dybcio@somainline.org> From: Christophe JAILLET In-Reply-To: <20220723100135.91784-3-konrad.dybcio@somainline.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org Le 23/07/2022 à 12:01, Konrad Dybcio a écrit : > Add support for the global clock controller found on SM6375. > > Signed-off-by: Konrad Dybcio > --- > Changes since v2: > - use parent_hws where applicable > > drivers/clk/qcom/Kconfig | 8 + > drivers/clk/qcom/Makefile | 1 + > drivers/clk/qcom/gcc-sm6375.c | 3931 +++++++++++++++++++++++++++++++++ > 3 files changed, 3940 insertions(+) > create mode 100644 drivers/clk/qcom/gcc-sm6375.c > > diff --git a/drivers/clk/qcom/Kconfig b/drivers/clk/qcom/Kconfig > index 415ae4ffab48..ef81eda01649 100644 > --- a/drivers/clk/qcom/Kconfig > +++ b/drivers/clk/qcom/Kconfig > @@ -672,6 +672,14 @@ config SM_GCC_6350 > Say Y if you want to use peripheral devices such as UART, > SPI, I2C, USB, SD/UFS, PCIe etc. > > +config SM_GCC_6375 > + tristate "SM6350 Global Clock Controller" Nit: SM6375? > + select QCOM_GDSC > + help > + Support for the global clock controller on SM6375 devices. > + Say Y if you want to use peripheral devices such as UART, > + SPI, I2C, USB, SD/UFS etc. > +