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: 13556483 X-Patchwork-Delegate: geert@linux-m68k.org 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 022AC52F90 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=1707915699; cv=none; b=S71YGtSDEd6jzdlXd3z+tk34TIDeosaKcur9QpLFlxUMs6eBVIVWoCONfo0gNlEtsfpPudO12EZKBsbGfrvs/k/VY+OSWhf6iWW6UEyW27XWFC1UMMvakD8X/kPPxnhcvCYhn3mY4Az4olFhfWwk8ewyn6w1W8ojn3LrYwK7ygs= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1707915699; c=relaxed/simple; bh=HvNU0b7ki0LYcCqehQ+RosFd5LMC+2bO3hcFGsiu1QM=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=pDKoR4yrLCa3V2Yuxo90BPA4PAjCgCV4T8uZDWwq2A9weYEuJEkug+odq7Rbd9Ky01ukmGB1QXRGy+3DhlAzSiMcecu4/DQ2egxW/2fXyQTj9zHevEj0Z5fz5GrxdPvyRUilccbmK9Lg4RojJ5/2aGg9xt7PsUvWVtMgyOEGXww= 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-renesas-soc@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),