From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 4DEDD10F2 for ; Sat, 3 Dec 2022 00:17:12 +0000 (UTC) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 6867A23A; Fri, 2 Dec 2022 16:17:18 -0800 (PST) Received: from slackpad.lan (unknown [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id DF5B93F73B; Fri, 2 Dec 2022 16:17:09 -0800 (PST) Date: Sat, 3 Dec 2022 00:15:32 +0000 From: Andre Przywara To: Samuel Holland Cc: Chen-Yu Tsai , Jernej Skrabec , Michael Turquette , Stephen Boyd , Krzysztof Kozlowski , Philipp Zabel , Rob Herring , devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org, linux-sunxi@lists.linux.dev Subject: Re: [PATCH 3/5] clk: sunxi-ng: d1: Allow building for R528/T113 Message-ID: <20221203001237.51813f71@slackpad.lan> In-Reply-To: <20221126191319.6404-4-samuel@sholland.org> References: <20221126191319.6404-1-samuel@sholland.org> <20221126191319.6404-4-samuel@sholland.org> Organization: Arm Ltd. X-Mailer: Claws Mail 4.1.0 (GTK 3.24.31; x86_64-slackware-linux-gnu) Precedence: bulk X-Mailing-List: linux-sunxi@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Sat, 26 Nov 2022 13:13:17 -0600 Samuel Holland wrote: > Allwinner released some 32-bit ARM (sun8i) SoCs which use the same CCU > as D1. Allow them to reuse the driver. > > Signed-off-by: Samuel Holland Indeed, the clocks are compatible, work (given the next patch) and are needed on a MangoPi-MQ-R board. Reviewed-by: Andre Przywara Cheers, Andre > --- > > drivers/clk/sunxi-ng/Kconfig | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/drivers/clk/sunxi-ng/Kconfig b/drivers/clk/sunxi-ng/Kconfig > index 78deee2996ce..b547198a2c65 100644 > --- a/drivers/clk/sunxi-ng/Kconfig > +++ b/drivers/clk/sunxi-ng/Kconfig > @@ -13,14 +13,14 @@ config SUNIV_F1C100S_CCU > depends on MACH_SUNIV || COMPILE_TEST > > config SUN20I_D1_CCU > - tristate "Support for the Allwinner D1 CCU" > + tristate "Support for the Allwinner D1/R528/T113 CCU" > default y > - depends on RISCV || COMPILE_TEST > + depends on MACH_SUN8I || RISCV || COMPILE_TEST > > config SUN20I_D1_R_CCU > - tristate "Support for the Allwinner D1 PRCM CCU" > + tristate "Support for the Allwinner D1/R528/T113 PRCM CCU" > default y > - depends on RISCV || COMPILE_TEST > + depends on MACH_SUN8I || RISCV || COMPILE_TEST > > config SUN50I_A64_CCU > tristate "Support for the Allwinner A64 CCU"