From patchwork Wed Feb 14 13:01:34 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 13556489 Received: from michel.telenet-ops.be (michel.telenet-ops.be [195.130.137.88]) (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 022DE52F99 for ; Wed, 14 Feb 2024 13:01:37 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.130.137.88 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1707915700; cv=none; b=Hg/wjUKr+wip6FP8o8OCHwYmkhGme3WFDiXNVj8MrTlPIHZP9oA31Qsfk7ED1Z0Am6NFYD49XOZSWUlaEc6DhS3VjBeO2VIdexBiJxUH0L0RLqh6OiTyzQi3BSt0zCC/fejmHSGpr9CQIH3Gka++HGDZVMHrq70apzWcB6rXUx4= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1707915700; c=relaxed/simple; bh=HvNU0b7ki0LYcCqehQ+RosFd5LMC+2bO3hcFGsiu1QM=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=bjr8sbhXhi+SvrT8t4KODLAVE9CAxf6UXXRY9x5Tz37L+INamk5uny0MjlISPrC/hg2KOzKSx0Tb6GHIa/VEQhpUHj6sBeEvsAoSK7cdXQBQU2KKInNknNPCGFqzalZ9eQzsAJZ6AxLujrklAx6ffjoPb9O89enN3hH+B67lODI= 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.137.88 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:ac52:3a54:2a84:d65a]) by michel.telenet-ops.be with bizsmtp id n11d2B00L0LVNSS0611dLN; Wed, 14 Feb 2024 14:01:37 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtp (Exim 4.95) (envelope-from ) id 1raEtG-000d4Y-M7; Wed, 14 Feb 2024 14:01:37 +0100 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1raEtN-00GpZC-9z; Wed, 14 Feb 2024 14:01:37 +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 SDHI clock Date: Wed, 14 Feb 2024 14:01:34 +0100 Message-Id: <3a604a6924043775c2ed0630b1c5c29be2d1a5b9.1707915642.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 SDHI module clock, which is used by the SD Card/MMC Interface 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. Changes compared to the BSP: - Rename "sdhi" to "sdhi0", - Update description to match reality. --- 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 46202e367d713d41..b95f1e5e6d470a0c 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("sdhi0", 706, R8A779H0_CLK_SD0), DEF_MOD("wdt1:wdt0", 907, R8A779H0_CLK_R), DEF_MOD("pfc0", 915, R8A779H0_CLK_CP), DEF_MOD("pfc1", 916, R8A779H0_CLK_CP),