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 7A784C433FE for ; Mon, 4 Apr 2022 12:55:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1348192AbiDDM5U (ORCPT ); Mon, 4 Apr 2022 08:57:20 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47844 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1348187AbiDDM5U (ORCPT ); Mon, 4 Apr 2022 08:57:20 -0400 Received: from relay8-d.mail.gandi.net (relay8-d.mail.gandi.net [217.70.183.201]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id EA8F0329B6; Mon, 4 Apr 2022 05:55:23 -0700 (PDT) Received: (Authenticated sender: miquel.raynal@bootlin.com) by mail.gandi.net (Postfix) with ESMTPSA id 05C2F1BF206; Mon, 4 Apr 2022 12:55:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1649076922; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=/x1VrTRzYIeZXgFI1aJWoH7XuJ4OZsM8zjk30JyCJy0=; b=BLzDPpcPhbH/jJwxz5q1L6uTHagwDAz9k8cHN52HkpLjzIIqbnp9YvzjPNiEfYH+Yo/iUE Sas6CLUXoQVza5LWBaH73TPSPXIBJcySlz8m8u9761f2CVZUu+tK1KTI0mdWSmUar3S2SV vUXrTp6z7GoqctRlDajLP6EW+iB156kjGrDxfGGYJGW3/mZBTjdkBHbp4X0BjbjRT6ZFIT +g6aiMc17Q2emuDNPmJ5XTVYKilY/ki+lf1jDmE0Vjg3ap0G7dHsCFw0uil5p139BZZv0q fjt0cjIIFkANFunSalO+dnkHmFYNAjuCbgKp6SpofvcJgEqVS8CI34dlW+Pbbw== Date: Mon, 4 Apr 2022 14:55:18 +0200 From: Miquel Raynal To: linux-renesas-soc@vger.kernel.org, Magnus Damm , Gareth Williams , Phil Edworthy , Geert Uytterhoeven , Stephen Boyd , Michael Turquette , linux-clk@vger.kernel.org, Vinod Koul , dmaengine@vger.kernel.org Cc: Milan Stevanovic , Jimmy Lalande , Pascal Eberhard , Thomas Petazzoni , Herve Codina , Clement Leger , Andy Shevchenko , Viresh Kumar Subject: Re: [PATCH v5 4/8] soc: renesas: rzn1-sysc: Export function to set dmamux Message-ID: <20220404145518.6b427356@xps13> In-Reply-To: <20220315191255.221473-5-miquel.raynal@bootlin.com> References: <20220315191255.221473-1-miquel.raynal@bootlin.com> <20220315191255.221473-5-miquel.raynal@bootlin.com> Organization: Bootlin X-Mailer: Claws Mail 3.17.7 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org Hello, miquel.raynal@bootlin.com wrote on Tue, 15 Mar 2022 20:12:51 +0100: > The dmamux register is located within the system controller. >=20 > Without syscon, we need an extra helper in order to give write access to > this register to a dmamux driver. >=20 > Signed-off-by: Miquel Raynal > --- > drivers/clk/renesas/r9a06g032-clocks.c | 35 ++++++++++++++++++- > include/linux/soc/renesas/r9a06g032-sysctrl.h | 11 ++++++ > 2 files changed, 45 insertions(+), 1 deletion(-) > create mode 100644 include/linux/soc/renesas/r9a06g032-sysctrl.h >=20 [...] > /* register/bit pairs are encoded as an uint16_t */ > static void > clk_rdesc_set(struct r9a06g032_priv *clocks, > @@ -922,6 +948,7 @@ static int __init r9a06g032_clocks_probe(struct platf= orm_device *pdev) > clocks->reg =3D of_iomap(np, 0); > if (WARN_ON(!clocks->reg)) > return -ENOMEM; > + As we are post -rc1 I will repost this series as a v6 after rebasing. While at it I'll get rid of this extra new line but that's basically all what I plan to change. As this series brings the basics for more RZN1 support (because of this specific sysctrl patch), it is kind of a base for more contributions which are in the pipe (UART, USB, RTC, Switch, etc) so hopefully it is now ready to be accepted. Thanks, Miqu=C3=A8l