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 41259368959; Mon, 9 Mar 2026 20:11:04 +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=1773087065; cv=none; b=roNT+5qzf3dxRmpemDs90+DDnOB7pdALBCcH8EP6CzROcOwB8VIIuvsvtuLP7gRP4+/Edu2X5slquVH2iFVHKNIunAcaE3FICtdbmyoaKNox2rcj/0cfzmMkeFIljLF+B1SwpXoAkw04qpcpjL43tVtAcTP1JlwzdIa8NM/Vw+Q= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773087065; c=relaxed/simple; bh=yF27ep3TepsukCbOCYKesTSmadiqW5lxWjZ7XDNmC/M=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=lHz53ic9YV3Ka4DXFJR6bidzzYwmLaB99BwMmNk4yk6GjziKcSzhDTqYZhrKAIjr8c31j52g+tpEDTAq2du0NKrenYOkh7QvJrexd5iWAQP6yN5hSWqhE0yGVohNZc6+PxeBelpOvgeUflhvm4j9gt8uL7HbRBhgZvZf1ODrnCg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=XVFZwKzB; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="XVFZwKzB" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 61A2EC2BC87; Mon, 9 Mar 2026 20:11:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1773087064; bh=yF27ep3TepsukCbOCYKesTSmadiqW5lxWjZ7XDNmC/M=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=XVFZwKzB9jRPszDrFhg3z6AwV0gwFcyJ3g2n6z0w+Yf02G1RytIOx+/mGRjRCl4NU kpOTDJocSOHERiAvVdIYIyz4gLj3Gstuxj/Q8bVORzYaJ9OaCdZVyG9l61n7HnSdon djU5LnciJLvVsH2fq2RhZYhKuc9kOBiq2Uu+5b0fAJvyj627dVGpae180F88ZItr6f TFhI6QAKe9oNqeI4uCsgI4a7y0qXDFyJtDvp/aZ49S6yX2KghEJMnb+QgC71VQZxg1 3LvaaTpHBWF2NCNRTGKQ7ez/ARINX4Nne8dS0jvGAv3pJ5QE+3tJ7lio5paaiD8WQA wWO8E7tt62sNQ== Date: Mon, 9 Mar 2026 13:11:02 -0700 From: Drew Fustini To: Stephen Boyd Cc: Anirudh Srinivasan , Drew Fustini , Joel Stanley , Rob Herring , Krzysztof Kozlowski , Conor Dooley , Michael Turquette , Philipp Zabel , linux-riscv@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org, joel@jms.id.au, mpe@kernel.org, mpe@oss.tenstorrent.com, npiggin@oss.tenstorrent.com, agross@kernel.org, agross@oss.tenstorrent.com, bmasney@redhat.com, Krzysztof Kozlowski Subject: Re: [PATCH v8 3/3] clk: tenstorrent: Add Atlantis clock controller driver Message-ID: References: <20260306-atlantis-clocks-v8-0-6c9b14a4aa8e@oss.tenstorrent.com> <20260306-atlantis-clocks-v8-3-6c9b14a4aa8e@oss.tenstorrent.com> Precedence: bulk X-Mailing-List: devicetree@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260306-atlantis-clocks-v8-3-6c9b14a4aa8e@oss.tenstorrent.com> On Fri, Mar 06, 2026 at 11:12:19AM -0600, Anirudh Srinivasan wrote: > Add driver for clock controller in Tenstorrent Atlantis SoC. This version > of the driver covers clocks from RCPU subsystem. > > 5 types of clocks generated by this controller: PLLs (PLLs > with bypass functionality and an additional Gate clk at output), Shared > Gates (Multiple Gate clks that share an enable bit), standard Muxes, > Dividers and Gates. All clocks are implemented using custom clk ops and > use the regmap interface associated with the syscon. All clocks are derived > from a 24 Mhz oscillator. > > The reset controller is also setup as an auxiliary device of the clock > controller. > > Signed-off-by: Anirudh Srinivasan > --- > MAINTAINERS | 1 + > drivers/clk/Kconfig | 1 + > drivers/clk/Makefile | 1 + > drivers/clk/tenstorrent/Kconfig | 14 + > drivers/clk/tenstorrent/Makefile | 3 + > drivers/clk/tenstorrent/atlantis-prcm.c | 870 ++++++++++++++++++++++++++++++++ > 6 files changed, 890 insertions(+) Hi Stephen, does it make sense for me to create clk branches [1] in the tenstorrent repo on kernel.org for Atlantis patches to go through? Thanks, Drew [1] https://git.kernel.org/pub/scm/linux/kernel/git/tenstorrent/linux.git/