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 D2399EB64DD for ; Tue, 4 Jul 2023 22:29:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230129AbjGDW3Z (ORCPT ); Tue, 4 Jul 2023 18:29:25 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43204 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229603AbjGDW3Y (ORCPT ); Tue, 4 Jul 2023 18:29:24 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9A33510DA; Tue, 4 Jul 2023 15:29:23 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 2D973613EA; Tue, 4 Jul 2023 22:29:21 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7D3F8C433C7; Tue, 4 Jul 2023 22:29:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1688509760; bh=57MH61s73VNxciqBMQn+M7UhO6ugmNcBRA165CCsfzE=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=TaIiPRGkudpAzaPzGTlHWdc8tgQu4vsgNOvM2PlTufQe/mQQsiwP19Okf5++zEVp/ DHzBA/kZz2TDw5fbGo+kpFiroO9DCMdWLg1TlPD4G/v5RmC9D8Z/ONccUd1WmPRDjh i8iuK1MHg171DSTCxJeeUNus/I3WvGGaBZgrE1/mNGUy/fbXA2CaZLuTWcUL+qUwLs Oge47qag2/dtqlbOhYPOGs+mNbNyI5E2V8v5T+2VnVv7810N8lf+PWbqVzKSgveryg IPVzqmZvISD4NEwa/dCAD+05GWUhyfMEXISsW2oEC/y/QAD6k72hVO8OejIeQSxKjR lYeNcfHHbBYtA== Date: Tue, 4 Jul 2023 23:29:15 +0100 From: Conor Dooley To: Xingyu Wu Cc: linux-riscv@lists.infradead.org, devicetree@vger.kernel.org, Michael Turquette , Stephen Boyd , Rob Herring , Krzysztof Kozlowski , Philipp Zabel , Emil Renner Berthing , Paul Walmsley , Palmer Dabbelt , Albert Ou , Hal Feng , William Qiu , linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org Subject: Re: [RESEND PATCH v6 0/7] Add PLL clocks driver and syscon for StarFive JH7110 SoC Message-ID: <20230704-driven-desecrate-75075ebc11a3@spud> References: <20230704064610.292603-1-xingyu.wu@starfivetech.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="hVeR+Tbp7CCet06V" Content-Disposition: inline In-Reply-To: <20230704064610.292603-1-xingyu.wu@starfivetech.com> Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org --hVeR+Tbp7CCet06V Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Emil, On Tue, Jul 04, 2023 at 02:46:03PM +0800, Xingyu Wu wrote: > [Resending because it has a error about examples in syscon bingdings > and has to be fixed.] >=20 > This patch serises are to add PLL clocks driver and providers by writing > and reading syscon registers for the StarFive JH7110 RISC-V SoC. And add= =20 > documentation and nodes to describe StarFive System Controller(syscon) > Registers. This patch serises are based on Linux 6.4. Could you take a look at this series when you get a chance, please? Would be good to finally get it merged since the syscon bits are a dep for a few other things :) Thanks! Conor. > William Qiu (2): > dt-bindings: soc: starfive: Add StarFive syscon module > riscv: dts: starfive: jh7110: Add syscon nodes >=20 > Xingyu Wu (5): > dt-bindings: clock: Add StarFive JH7110 PLL clock generator > dt-bindings: clock: jh7110-syscrg: Add PLL clock inputs > clk: starfive: Add StarFive JH7110 PLL clock driver > clk: starfive: jh7110-sys: Add PLL clocks source from DTS > riscv: dts: starfive: jh7110: Add PLL clocks source in SYSCRG node >=20 > .../bindings/clock/starfive,jh7110-pll.yaml | 46 ++ > .../clock/starfive,jh7110-syscrg.yaml | 18 +- > .../soc/starfive/starfive,jh7110-syscon.yaml | 93 ++++ > MAINTAINERS | 13 + > arch/riscv/boot/dts/starfive/jh7110.dtsi | 30 +- > drivers/clk/starfive/Kconfig | 9 + > drivers/clk/starfive/Makefile | 1 + > .../clk/starfive/clk-starfive-jh7110-pll.c | 507 ++++++++++++++++++ > .../clk/starfive/clk-starfive-jh7110-sys.c | 45 +- > .../dt-bindings/clock/starfive,jh7110-crg.h | 6 + > 10 files changed, 746 insertions(+), 22 deletions(-) > create mode 100644 Documentation/devicetree/bindings/clock/starfive,jh71= 10-pll.yaml > create mode 100644 Documentation/devicetree/bindings/soc/starfive/starfi= ve,jh7110-syscon.yaml > create mode 100644 drivers/clk/starfive/clk-starfive-jh7110-pll.c >=20 > --=20 > 2.25.1 >=20 --hVeR+Tbp7CCet06V Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEABYIAB0WIQRh246EGq/8RLhDjO14tDGHoIJi0gUCZKSdOwAKCRB4tDGHoIJi 0hnvAQCLkhD5vFq12iIYCmHzR7wCU9c4M1WnBflj69YY4Nt1wQEAhZrKHy+edzwF uV8cREqaiwoc8aI9tSrOSrGWgreEbwM= =wTVc -----END PGP SIGNATURE----- --hVeR+Tbp7CCet06V--