* [PATCH] mmc: core: Fix init of SD cards reporting an invalid VDD range
@ 2019-08-27 8:10 Ulf Hansson
2019-08-28 1:15 ` Philip Langdale
0 siblings, 1 reply; 3+ messages in thread
From: Ulf Hansson @ 2019-08-27 8:10 UTC (permalink / raw)
To: linux-mmc, Ulf Hansson, Philip Langdale; +Cc: stable
The OCR register defines the supported range of VDD voltages for SD cards.
However, it has turned out that some SD cards reports an invalid voltage
range, for example having bit7 set.
When a host supports MMC_CAP2_FULL_PWR_CYCLE and some of the voltages from
the invalid VDD range, this triggers the core to run a power cycle of the
card to try to initialize it at the lowest common supported voltage.
Obviously this fails, since the card can't support it.
Let's fix this problem, by clearing invalid bits from the read OCR register
for SD cards, before proceeding with the VDD voltage negotiation.
Cc: stable@vger.kernel.org
Reported-by: Philip Langdale <philipl@overt.org>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
---
drivers/mmc/core/sd.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/mmc/core/sd.c b/drivers/mmc/core/sd.c
index d681e8aaca83..fe914ff5f5d6 100644
--- a/drivers/mmc/core/sd.c
+++ b/drivers/mmc/core/sd.c
@@ -1292,6 +1292,12 @@ int mmc_attach_sd(struct mmc_host *host)
goto err;
}
+ /*
+ * Some SD cards claims an out of spec VDD voltage range. Let's treat
+ * these bits as being in-valid and especially also bit7.
+ */
+ ocr &= ~0x7FFF;
+
rocr = mmc_select_voltage(host, ocr);
/*
--
2.17.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] mmc: core: Fix init of SD cards reporting an invalid VDD range
2019-08-27 8:10 [PATCH] mmc: core: Fix init of SD cards reporting an invalid VDD range Ulf Hansson
@ 2019-08-28 1:15 ` Philip Langdale
2019-08-28 10:07 ` Ulf Hansson
0 siblings, 1 reply; 3+ messages in thread
From: Philip Langdale @ 2019-08-28 1:15 UTC (permalink / raw)
To: Ulf Hansson; +Cc: linux-mmc, stable
On Tue, 27 Aug 2019 10:10:43 +0200
Ulf Hansson <ulf.hansson@linaro.org> wrote:
> The OCR register defines the supported range of VDD voltages for SD
> cards. However, it has turned out that some SD cards reports an
> invalid voltage range, for example having bit7 set.
>
> When a host supports MMC_CAP2_FULL_PWR_CYCLE and some of the voltages
> from the invalid VDD range, this triggers the core to run a power
> cycle of the card to try to initialize it at the lowest common
> supported voltage. Obviously this fails, since the card can't support
> it.
>
> Let's fix this problem, by clearing invalid bits from the read OCR
> register for SD cards, before proceeding with the VDD voltage
> negotiation.
>
> Cc: stable@vger.kernel.org
> Reported-by: Philip Langdale <philipl@overt.org>
> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
> ---
> drivers/mmc/core/sd.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/drivers/mmc/core/sd.c b/drivers/mmc/core/sd.c
> index d681e8aaca83..fe914ff5f5d6 100644
> --- a/drivers/mmc/core/sd.c
> +++ b/drivers/mmc/core/sd.c
> @@ -1292,6 +1292,12 @@ int mmc_attach_sd(struct mmc_host *host)
> goto err;
> }
>
> + /*
> + * Some SD cards claims an out of spec VDD voltage range.
> Let's treat
> + * these bits as being in-valid and especially also bit7.
> + */
> + ocr &= ~0x7FFF;
> +
> rocr = mmc_select_voltage(host, ocr);
>
> /*
Looks right. Tried it out and worked as expected.
Reviewed-by: Philip Langdale <philipl@overt.org>
--phil
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] mmc: core: Fix init of SD cards reporting an invalid VDD range
2019-08-28 1:15 ` Philip Langdale
@ 2019-08-28 10:07 ` Ulf Hansson
0 siblings, 0 replies; 3+ messages in thread
From: Ulf Hansson @ 2019-08-28 10:07 UTC (permalink / raw)
To: Philip Langdale; +Cc: linux-mmc@vger.kernel.org, # 4.0+
On Wed, 28 Aug 2019 at 03:15, Philip Langdale <philipl@overt.org> wrote:
>
> On Tue, 27 Aug 2019 10:10:43 +0200
> Ulf Hansson <ulf.hansson@linaro.org> wrote:
>
> > The OCR register defines the supported range of VDD voltages for SD
> > cards. However, it has turned out that some SD cards reports an
> > invalid voltage range, for example having bit7 set.
> >
> > When a host supports MMC_CAP2_FULL_PWR_CYCLE and some of the voltages
> > from the invalid VDD range, this triggers the core to run a power
> > cycle of the card to try to initialize it at the lowest common
> > supported voltage. Obviously this fails, since the card can't support
> > it.
> >
> > Let's fix this problem, by clearing invalid bits from the read OCR
> > register for SD cards, before proceeding with the VDD voltage
> > negotiation.
> >
> > Cc: stable@vger.kernel.org
> > Reported-by: Philip Langdale <philipl@overt.org>
> > Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
> > ---
> > drivers/mmc/core/sd.c | 6 ++++++
> > 1 file changed, 6 insertions(+)
> >
> > diff --git a/drivers/mmc/core/sd.c b/drivers/mmc/core/sd.c
> > index d681e8aaca83..fe914ff5f5d6 100644
> > --- a/drivers/mmc/core/sd.c
> > +++ b/drivers/mmc/core/sd.c
> > @@ -1292,6 +1292,12 @@ int mmc_attach_sd(struct mmc_host *host)
> > goto err;
> > }
> >
> > + /*
> > + * Some SD cards claims an out of spec VDD voltage range.
> > Let's treat
> > + * these bits as being in-valid and especially also bit7.
> > + */
> > + ocr &= ~0x7FFF;
> > +
> > rocr = mmc_select_voltage(host, ocr);
> >
> > /*
>
> Looks right. Tried it out and worked as expected.
>
> Reviewed-by: Philip Langdale <philipl@overt.org>
Thanks! I add your tested-by tag as well!
Kind regards
Uffe
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-08-28 10:08 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-27 8:10 [PATCH] mmc: core: Fix init of SD cards reporting an invalid VDD range Ulf Hansson
2019-08-28 1:15 ` Philip Langdale
2019-08-28 10:07 ` Ulf Hansson
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).