From: Wolfram Sang <wsa+renesas@sang-engineering.com>
To: linux-mmc@vger.kernel.org
Cc: linux-renesas-soc@vger.kernel.org,
Wolfram Sang <wsa+renesas@sang-engineering.com>
Subject: [PATCH] mmc: renesas_sdhi: don't lose RPM savings because of manual clk handling
Date: Wed, 13 May 2020 19:31:31 +0200 [thread overview]
Message-ID: <20200513173131.11200-1-wsa+renesas@sang-engineering.com> (raw)
The SDHI driver en-/disabled clocks on its own during probe() and
remove(). This basically killed all potential RPM power savings. Now, we
just enable the clocks for a short time when we access registers in
probe(). We otherwise leave all handling to RPM. That means, we need to
shift the RPM enabling code in the TMIO core a bit up, so we can access
registers there, too.
clk_summary before:
sd0 1 1 0 12480000 0 0 50000
sdif0 2 2 0 12480000 0 0 50000
clk_summary after:
sd0 1 1 0 12480000 0 0 50000
sdif0 1 1 0 12480000 0 0 50000
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
Tested on a Salvator-XS board with R-Car M3-N.
drivers/mmc/host/renesas_sdhi_core.c | 7 +++----
drivers/mmc/host/tmio_mmc_core.c | 14 +++++++-------
2 files changed, 10 insertions(+), 11 deletions(-)
diff --git a/drivers/mmc/host/renesas_sdhi_core.c b/drivers/mmc/host/renesas_sdhi_core.c
index ff72b381a6b3..d581142634f8 100644
--- a/drivers/mmc/host/renesas_sdhi_core.c
+++ b/drivers/mmc/host/renesas_sdhi_core.c
@@ -910,6 +910,8 @@ int renesas_sdhi_probe(struct platform_device *pdev,
goto efree;
ver = sd_ctrl_read16(host, CTL_VERSION);
+ renesas_sdhi_clk_disable(host);
+
/* GEN2_SDR104 is first known SDHI to use 32bit block count */
if (ver < SDHI_VER_GEN2_SDR104 && mmc_data->max_blk_count > U16_MAX)
mmc_data->max_blk_count = U16_MAX;
@@ -920,7 +922,7 @@ int renesas_sdhi_probe(struct platform_device *pdev,
ret = tmio_mmc_host_probe(host);
if (ret < 0)
- goto edisclk;
+ goto efree;
/* Enable tuning iff we have an SCC and a supported mode */
if (of_data && of_data->scc_offset &&
@@ -985,8 +987,6 @@ int renesas_sdhi_probe(struct platform_device *pdev,
eirq:
tmio_mmc_host_remove(host);
-edisclk:
- renesas_sdhi_clk_disable(host);
efree:
tmio_mmc_host_free(host);
@@ -999,7 +999,6 @@ int renesas_sdhi_remove(struct platform_device *pdev)
struct tmio_mmc_host *host = platform_get_drvdata(pdev);
tmio_mmc_host_remove(host);
- renesas_sdhi_clk_disable(host);
return 0;
}
diff --git a/drivers/mmc/host/tmio_mmc_core.c b/drivers/mmc/host/tmio_mmc_core.c
index 9a4ae954553b..6968177dd1cd 100644
--- a/drivers/mmc/host/tmio_mmc_core.c
+++ b/drivers/mmc/host/tmio_mmc_core.c
@@ -1116,6 +1116,13 @@ int tmio_mmc_host_probe(struct tmio_mmc_host *_host)
_host->set_pwr = pdata->set_pwr;
+ dev_pm_domain_start(&pdev->dev);
+ pm_runtime_get_noresume(&pdev->dev);
+ pm_runtime_set_active(&pdev->dev);
+ pm_runtime_set_autosuspend_delay(&pdev->dev, 50);
+ pm_runtime_use_autosuspend(&pdev->dev);
+ pm_runtime_enable(&pdev->dev);
+
ret = tmio_mmc_init_ocr(_host);
if (ret < 0)
return ret;
@@ -1192,13 +1199,6 @@ int tmio_mmc_host_probe(struct tmio_mmc_host *_host)
/* See if we also get DMA */
tmio_mmc_request_dma(_host, pdata);
- dev_pm_domain_start(&pdev->dev);
- pm_runtime_get_noresume(&pdev->dev);
- pm_runtime_set_active(&pdev->dev);
- pm_runtime_set_autosuspend_delay(&pdev->dev, 50);
- pm_runtime_use_autosuspend(&pdev->dev);
- pm_runtime_enable(&pdev->dev);
-
ret = mmc_add_host(mmc);
if (ret)
goto remove_host;
--
2.20.1
next reply other threads:[~2020-05-13 17:31 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-13 17:31 Wolfram Sang [this message]
2020-05-15 9:26 ` [PATCH] mmc: renesas_sdhi: don't lose RPM savings because of manual clk handling Ulf Hansson
2020-05-15 14:30 ` Niklas Söderlund
2020-05-15 16:48 ` Masahiro Yamada
2020-05-15 14:35 ` Geert Uytterhoeven
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200513173131.11200-1-wsa+renesas@sang-engineering.com \
--to=wsa+renesas@sang-engineering.com \
--cc=linux-mmc@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).