From: Meagan Lloyd <meaganlloyd@linux.microsoft.com>
To: rjui@broadcom.com
Cc: sbranden@broadcom.com, linux-arm-kernel@lists.infradead.org,
meaganlloyd@linux.microsoft.com, tgopinath@linux.microsoft.com,
adrian.hunter@intel.com, linux-mmc@vger.kernel.org
Subject: [RFC PATCH] mmc: host: sdhci-iproc: implement the .hw_reset callback
Date: Fri, 27 Mar 2026 15:21:49 -0700 [thread overview]
Message-ID: <20260327222150.2108111-1-meaganlloyd@linux.microsoft.com> (raw)
Implement the .hw_reset callback so that the eMMC can be reset as needed
given cap-mmc-hw-reset is set in the devicetree and the functionality is
enabled on the eMMC.
Signed-off-by: Meagan Lloyd <meaganlloyd@linux.microsoft.com>
---
SDHCI_POWER_CONTROL[4] (SD Host Controller Standard) has been repurposed
on my Broadcomm processor to be eMMC hardware reset
(SDIO*_eMMCSDXC_CTRL[12], HRESET).
Can you confirm this repurposed bit is consistent across the Broadcomm
iProc processors and thus the .hw_reset callback can be uniformly
applied in this driver?
---
drivers/mmc/host/sdhci-iproc.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/drivers/mmc/host/sdhci-iproc.c b/drivers/mmc/host/sdhci-iproc.c
index 35ef5c5f51467..9018ed7fe2e66 100644
--- a/drivers/mmc/host/sdhci-iproc.c
+++ b/drivers/mmc/host/sdhci-iproc.c
@@ -181,12 +181,26 @@ static unsigned int sdhci_iproc_bcm2711_get_min_clock(struct sdhci_host *host)
return 200000;
}
+static void sdhci_iproc_hw_reset(struct sdhci_host *host)
+{
+ u8 val = sdhci_readb(host, SDHCI_POWER_CONTROL);
+
+ /* Trigger reset and hold for at least 1us (eMMC spec requirement) */
+ sdhci_writeb(host, val | BIT(4), SDHCI_POWER_CONTROL);
+ usleep_range(2, 10);
+
+ /* Release from reset and wait for at least 200us (eMMC spec requirement) */
+ sdhci_writeb(host, val & ~BIT(4), SDHCI_POWER_CONTROL);
+ usleep_range(250, 300);
+}
+
static const struct sdhci_ops sdhci_iproc_ops = {
.set_clock = sdhci_set_clock,
.get_max_clock = sdhci_iproc_get_max_clock,
.set_bus_width = sdhci_set_bus_width,
.reset = sdhci_reset,
.set_uhs_signaling = sdhci_set_uhs_signaling,
+ .hw_reset = sdhci_iproc_hw_reset,
};
static const struct sdhci_ops sdhci_iproc_32only_ops = {
@@ -201,6 +215,7 @@ static const struct sdhci_ops sdhci_iproc_32only_ops = {
.set_bus_width = sdhci_set_bus_width,
.reset = sdhci_reset,
.set_uhs_signaling = sdhci_set_uhs_signaling,
+ .hw_reset = sdhci_iproc_hw_reset,
};
static const struct sdhci_pltfm_data sdhci_iproc_cygnus_pltfm_data = {
@@ -283,6 +298,7 @@ static const struct sdhci_ops sdhci_iproc_bcm2711_ops = {
.set_bus_width = sdhci_set_bus_width,
.reset = sdhci_reset,
.set_uhs_signaling = sdhci_set_uhs_signaling,
+ .hw_reset = sdhci_iproc_hw_reset,
};
static const struct sdhci_pltfm_data sdhci_bcm2711_pltfm_data = {
--
2.49.0
reply other threads:[~2026-03-27 22:22 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=20260327222150.2108111-1-meaganlloyd@linux.microsoft.com \
--to=meaganlloyd@linux.microsoft.com \
--cc=adrian.hunter@intel.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-mmc@vger.kernel.org \
--cc=rjui@broadcom.com \
--cc=sbranden@broadcom.com \
--cc=tgopinath@linux.microsoft.com \
/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