From patchwork Mon Feb 19 14:54:09 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 13562803 Received: from andre.telenet-ops.be (andre.telenet-ops.be [195.130.132.53]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 84A7937700 for ; Mon, 19 Feb 2024 14:54:14 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.130.132.53 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708354457; cv=none; b=jXGBXSQt3YS2LTc2Ma23F+M/6+qPsZhWAKfT2Ca9LdKMqDahu32gV0+LPrkpYdTdeh+HtD/surxKBeC87ZJd7s5AYmdE0SDMGEyclGN1ieo0ejgNrMxii5TT+2jQ+FGF3LExjwSwnPZECjRJFSSxsMqh+sPZ+e06Iipf2F22LCA= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708354457; c=relaxed/simple; bh=tF4pglNP5nBOlAMGxEoCXi1cGb2jkE3GNB+g4iJEE8w=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=Zn+xs7/I/w+xq68Nkg+ckwshnI8OYFBlThkOp0XStCm9bptAfmtY+QSCy4MsngDQKiAkihNTm/4XoQ0DdPPO/+qDNxQlTgIBWPBtKmxQnHvLLuRKEa1AnFJQtDPW/N8rKv6wlABkQunYmAEDWvoYnC+lzbr+AveoxaB4DJFuGNA= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be; spf=none smtp.mailfrom=linux-m68k.org; arc=none smtp.client-ip=195.130.132.53 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=linux-m68k.org Received: from ramsan.of.borg ([IPv6:2a02:1810:ac12:ed40:a66f:1f5b:42c8:e3c5]) by andre.telenet-ops.be with bizsmtp id p2uB2B00T1N8lK5012uBwG; Mon, 19 Feb 2024 15:54:12 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtp (Exim 4.95) (envelope-from ) id 1rc51v-0016fA-SV; Mon, 19 Feb 2024 15:54:11 +0100 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1rc523-007QfY-Jr; Mon, 19 Feb 2024 15:54:11 +0100 From: Geert Uytterhoeven To: Michael Turquette , Stephen Boyd Cc: linux-renesas-soc@vger.kernel.org, linux-clk@vger.kernel.org, Cong Dang , Geert Uytterhoeven Subject: [PATCH] clk: renesas: r8a779h0: Add RPC-IF clock Date: Mon, 19 Feb 2024 15:54:09 +0100 Message-Id: <07a72378ca64b44341af960f042a6efd41d10dc3.1708354355.git.geert+renesas@glider.be> X-Mailer: git-send-email 2.34.1 Precedence: bulk X-Mailing-List: linux-clk@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 From: Cong Dang Add the module clock used by the SPI Multi I/O Bus Controller (RPC-IF) on the Renesas R-Car V4M (R8A779H0) SoC. Signed-off-by: Cong Dang Signed-off-by: Geert Uytterhoeven Reviewed-by: Wolfram Sang --- To be queued in renesas-clk for v6.9. drivers/clk/renesas/r8a779h0-cpg-mssr.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clk/renesas/r8a779h0-cpg-mssr.c b/drivers/clk/renesas/r8a779h0-cpg-mssr.c index 92359306dc0df544..71f67a1c86d80f4c 100644 --- a/drivers/clk/renesas/r8a779h0-cpg-mssr.c +++ b/drivers/clk/renesas/r8a779h0-cpg-mssr.c @@ -184,6 +184,7 @@ static const struct mssr_mod_clk r8a779h0_mod_clks[] = { DEF_MOD("i2c1", 519, R8A779H0_CLK_S0D6_PER), DEF_MOD("i2c2", 520, R8A779H0_CLK_S0D6_PER), DEF_MOD("i2c3", 521, R8A779H0_CLK_S0D6_PER), + DEF_MOD("rpc-if", 629, R8A779H0_CLK_RPCD2), DEF_MOD("sdhi0", 706, R8A779H0_CLK_SD0), DEF_MOD("sydm1", 709, R8A779H0_CLK_S0D6_PER), DEF_MOD("sydm2", 710, R8A779H0_CLK_S0D6_PER),