The patch below does not apply to the 5.19-stable tree. If someone wants it applied there, or to any other stable or longterm tree, then please email the backport, including the original git commit id to stable@vger.kernel.org.
Possible dependencies:
e9233917a7e5 ("mmc: core: Terminate infinite loop in SD-UHS voltage switch") e42726646082 ("mmc: core: Replace with already defined values for readability")
thanks,
greg k-h
------------------ original commit in Linus's tree ------------------
From e9233917a7e53980664efbc565888163c0a33c3f Mon Sep 17 00:00:00 2001 From: Brian Norris briannorris@chromium.org Date: Tue, 13 Sep 2022 18:40:10 -0700 Subject: [PATCH] mmc: core: Terminate infinite loop in SD-UHS voltage switch
This loop intends to retry a max of 10 times, with some implicit termination based on the SD_{R,}OCR_S18A bit. Unfortunately, the termination condition depends on the value reported by the SD card (*rocr), which may or may not correctly reflect what we asked it to do.
Needless to say, it's not wise to rely on the card doing what we expect; we should at least terminate the loop regardless. So, check both the input and output values, so we ensure we will terminate regardless of the SD card behavior.
Note that SDIO learned a similar retry loop in commit 0797e5f1453b ("mmc: core: Fixup signal voltage switch"), but that used the 'ocr' result, and so the current pre-terminating condition looks like:
rocr & ocr & R4_18V_PRESENT
(i.e., it doesn't have the same bug.)
This addresses a number of crash reports seen on ChromeOS that look like the following:
... // lots of repeated: ... <4>[13142.846061] mmc1: Skipping voltage switch <4>[13143.406087] mmc1: Skipping voltage switch <4>[13143.964724] mmc1: Skipping voltage switch <4>[13144.526089] mmc1: Skipping voltage switch <4>[13145.086088] mmc1: Skipping voltage switch <4>[13145.645941] mmc1: Skipping voltage switch <3>[13146.153969] INFO: task halt:30352 blocked for more than 122 seconds. ...
Fixes: f2119df6b764 ("mmc: sd: add support for signal voltage switch procedure") Cc: stable@vger.kernel.org Signed-off-by: Brian Norris briannorris@chromium.org Reviewed-by: Guenter Roeck linux@roeck-us.net Link: https://lore.kernel.org/r/20220914014010.2076169-1-briannorris@chromium.org Signed-off-by: Ulf Hansson ulf.hansson@linaro.org
diff --git a/drivers/mmc/core/sd.c b/drivers/mmc/core/sd.c index 06aa62ce0ed1..3662bf5320ce 100644 --- a/drivers/mmc/core/sd.c +++ b/drivers/mmc/core/sd.c @@ -870,7 +870,8 @@ int mmc_sd_get_cid(struct mmc_host *host, u32 ocr, u32 *cid, u32 *rocr) * the CCS bit is set as well. We deliberately deviate from the spec in * regards to this, which allows UHS-I to be supported for SDSC cards. */ - if (!mmc_host_is_spi(host) && rocr && (*rocr & SD_ROCR_S18A)) { + if (!mmc_host_is_spi(host) && (ocr & SD_OCR_S18R) && + rocr && (*rocr & SD_ROCR_S18A)) { err = mmc_set_uhs_voltage(host, pocr); if (err == -EAGAIN) { retries--;
On Sun, Oct 02, 2022 at 11:53:00AM +0200, Greg Kroah-Hartman wrote:
The patch below does not apply to the 5.19-stable tree. If someone wants it applied there, or to any other stable or longterm tree, then please email the backport, including the original git commit id to stable@vger.kernel.org.
Possible dependencies:
e9233917a7e5 ("mmc: core: Terminate infinite loop in SD-UHS voltage switch") e42726646082 ("mmc: core: Replace with already defined values for readability")
I think it would be most readable and least error prone to just backport commit e42726646082 (it's trivial) along with $subject. I've confirmed that together, these two patches apply cleanly to 4.14.y..5.19.y, and the appropriate definitions are available.
4.9.y has some other conflicts, due to missing this:
09247e110b2e mmc: core: Allow UHS-I voltage switch for SDSC cards if supported
I'd personaly just skip $subject for 4.9.y too, although I could be convinced to rewrite and submit a backport if someone feels strongly.
I'll assume Greg can pick the quoted two commits up (that more or less fits Documentation/stable_kernel_rules.txt option 2), but I can submit a proper patchset if needed.
Brian
On Thu, Oct 06, 2022 at 12:10:42PM -0700, Brian Norris wrote:
On Sun, Oct 02, 2022 at 11:53:00AM +0200, Greg Kroah-Hartman wrote:
The patch below does not apply to the 5.19-stable tree. If someone wants it applied there, or to any other stable or longterm tree, then please email the backport, including the original git commit id to stable@vger.kernel.org.
Possible dependencies:
e9233917a7e5 ("mmc: core: Terminate infinite loop in SD-UHS voltage switch") e42726646082 ("mmc: core: Replace with already defined values for readability")
I think it would be most readable and least error prone to just backport commit e42726646082 (it's trivial) along with $subject. I've confirmed that together, these two patches apply cleanly to 4.14.y..5.19.y, and the appropriate definitions are available.
4.9.y has some other conflicts, due to missing this:
09247e110b2e mmc: core: Allow UHS-I voltage switch for SDSC cards if supported
I'd personaly just skip $subject for 4.9.y too, although I could be convinced to rewrite and submit a backport if someone feels strongly.
I'll assume Greg can pick the quoted two commits up (that more or less fits Documentation/stable_kernel_rules.txt option 2), but I can submit a proper patchset if needed.
A proper patchset would be great so I know exactly what to do.
thanks,
greg k-h
linux-stable-mirror@lists.linaro.org