Linux MultiMedia Card development
 help / color / mirror / Atom feed
* [PATCH] mmc: host: dw-mmc-rockchip: avoid logspam when cd-broken
@ 2022-02-28 22:36 Peter Geis
  2022-03-01 11:23 ` Robin Murphy
  2022-03-02  1:03 ` Shawn Lin
  0 siblings, 2 replies; 10+ messages in thread
From: Peter Geis @ 2022-02-28 22:36 UTC (permalink / raw)
  To: Jaehoon Chung, Ulf Hansson, Heiko Stuebner
  Cc: Peter Geis, linux-mmc, linux-arm-kernel, linux-rockchip,
	linux-kernel

The dw_mmc-rockchip driver drops a large amound of logspam constantly
when the cd-broken flag is enabled.
Set the warning to be debug ratelimited in this case.

Signed-off-by: Peter Geis <pgwipeout@gmail.com>
---
 drivers/mmc/host/dw_mmc-rockchip.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/drivers/mmc/host/dw_mmc-rockchip.c b/drivers/mmc/host/dw_mmc-rockchip.c
index 95d0ec0f5f3a..d0ebf0afa42a 100644
--- a/drivers/mmc/host/dw_mmc-rockchip.c
+++ b/drivers/mmc/host/dw_mmc-rockchip.c
@@ -50,8 +50,13 @@ static void dw_mci_rk3288_set_ios(struct dw_mci *host, struct mmc_ios *ios)
 		cclkin = ios->clock * RK3288_CLKGEN_DIV;
 
 	ret = clk_set_rate(host->ciu_clk, cclkin);
-	if (ret)
-		dev_warn(host->dev, "failed to set rate %uHz\n", ios->clock);
+	if (ret) {
+		/* this screams when card detection is broken */
+		if (host->slot->mmc->caps & MMC_CAP_NEEDS_POLL)
+			dev_dbg_ratelimited(host->dev, "failed to set rate %uHz\n", ios->clock);
+		else
+			dev_warn(host->dev, "failed to set rate %uHz\n", ios->clock);
+	}
 
 	bus_hz = clk_get_rate(host->ciu_clk) / RK3288_CLKGEN_DIV;
 	if (bus_hz != host->bus_hz) {
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2022-03-02 10:23 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-28 22:36 [PATCH] mmc: host: dw-mmc-rockchip: avoid logspam when cd-broken Peter Geis
2022-03-01 11:23 ` Robin Murphy
2022-03-01 11:49   ` Peter Geis
2022-03-01 12:38     ` Robin Murphy
2022-03-01 12:46       ` Peter Geis
2022-03-01 14:49         ` Peter Geis
2022-03-01 16:03           ` Robin Murphy
2022-03-02 10:22           ` Ulf Hansson
2022-03-02  1:03 ` Shawn Lin
2022-03-02  1:21   ` Peter Geis

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox