From: "Kristina Martšenko" <kristina.martsenko@gmail.com>
To: Stefan Wahren <stefan.wahren@i2se.com>
Cc: Ulf Hansson <ulf.hansson@linaro.org>,
Chris Ball <chris@printf.net>,
linux-mmc@vger.kernel.org,
Linus Walleij <linus.walleij@linaro.org>,
festevam@gmail.com, linux-arm-kernel@lists.infradead.org,
linux-gpio@vger.kernel.org
Subject: Re: [Regression Resend] mmc: mx28: sd card detection broken since 3.18-rc1
Date: Mon, 03 Nov 2014 01:01:07 +0200 [thread overview]
Message-ID: <5456B7B3.60401@gmail.com> (raw)
In-Reply-To: <1747777414.897866.1414878004147.JavaMail.open-xchange@oxbsltgw09.schlund.de>
On 01/11/14 23:40, Stefan Wahren wrote:
> Hi,
>
> i was testing Linux Kernel 3.18-rc2 with my i.MX28 board (I2SE Duckbill) and ran
> into the problem that the sd card isn't detected from the Kernel at booting
> (driver: mxs-mmc.c). That results in a endless wait for the root partition
>
> Here are the relevant messages (bad case):
>
> [...]
> [ 1.501883] mxs-mmc 80010000.ssp: initialized
> [ 1.521203] TCP: cubic registered
> [ 1.530850] NET: Registered protocol family 10
> [ 1.548469] mip6: Mobile IPv6
> [ 1.551698] sit: IPv6 over IPv4 tunneling driver
> [ 1.566016] ip6_gre: GRE over IPv6 tunneling driver
> [ 1.575831] NET: Registered protocol family 17
> [ 1.581640] bridge: automatic filtering via arp/ip/ip6tables has been
> deprecated. Update your scripts to load br_netfilter if you need this.
> [ 1.595635] Key type dns_resolver registered
> [ 1.604302] registered taskstats version 1
> [ 1.618188] stmp3xxx-rtc 80056000.rtc: setting system clock to 1970-01-01
> 00:00:03 UTC (3)
> [ 1.675580] Waiting for root device /dev/mmcblk0p3...
>
> In Linux Kernel 3.17 that problem didn't exist (good case):
>
> [...]
> [ 1.546857] mxs-mmc 80010000.ssp: initialized
> [ 1.576363] TCP: cubic registered
> [ 1.588856] NET: Registered protocol family 10
> [ 1.608208] mmc0: host does not support reading read-only switch. assuming
> write-enable.
> [ 1.616927] mip6: Mobile IPv6
> [ 1.620028] sit: IPv6 over IPv4 tunneling driver
> [ 1.629900] mmc0: new high speed SDHC card at address 0007
> [ 1.642901] ip6_gre: GRE over IPv6 tunneling driver
> [ 1.652047] mmcblk0: mmc0:0007 SD16G 14.6 GiB
> [ 1.662108] NET: Registered protocol family 17
> [ 1.678091] mmcblk0: p1 p2 p3
> [...]
>
> I've have bisected the problem to this commit:
>
> commit 89168b48991537bec2573b3b6a8841df74465b12
> Author: Linus Walleij <linus.walleij@linaro.org>
> Date: Thu Oct 2 09:08:46 2014 +0200
>
> mmc: core: restore detect line inversion semantics
>
> commit 98e90de99a0c43bd434da814c882c4332441871e
> "mmc: host: switch OF parser to use gpio descriptors"
> switched the semantic behaviour of card detect and read
> only flags such that the inversion capability flag would
> only be set if inversion was explicitly specified in the
> device tree, in the hopes that no-one was using double
> inversion.
>
> It turns out that the XOR:ing between the explicit
> inversion was indeed in use, so we need to restore the
> old semantics where both ways of inversion are checked
> and the end result XOR:ed.
>
> Reported-by: Javier Martinez Canillas <javier@dowhile0.org>
> Tested-by: Javier Martinez Canillas <javier@dowhile0.org>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
>
> Kernel command line: -e noinitrd console=ttyAMA0,115200 root=/dev/mmcblk0p3 rw
> rootwait
>
> It looks to me that the patch didn't fix all host controller.
I ran into this issue as well. Seems that a card-detect flag
(MMC_CAP2_CD_ACTIVE_HIGH) can currently be set based on an
uninitialized variable, which can lead to the card being reported as
not present. This patch fixes it for me:
diff --git a/drivers/mmc/core/host.c b/drivers/mmc/core/host.c
index 03c53b72a2d6..f0e187682d3b 100644
--- a/drivers/mmc/core/host.c
+++ b/drivers/mmc/core/host.c
@@ -311,7 +311,7 @@ int mmc_of_parse(struct mmc_host *host)
struct device_node *np;
u32 bus_width;
int len, ret;
- bool cap_invert, gpio_invert;
+ bool cap_invert, gpio_invert = false;
if (!host->parent || !host->parent->of_node)
return 0;
@@ -401,6 +401,7 @@ int mmc_of_parse(struct mmc_host *host)
else
cap_invert = false;
+ gpio_invert = false;
ret = mmc_gpiod_request_ro(host, "wp", 0, false, 0, &gpio_invert);
if (ret) {
if (ret == -EPROBE_DEFER)
Let me know if this also fixes it for you, and I'll send in a proper
patch.
Thanks,
Kristina
next prev parent reply other threads:[~2014-11-02 23:01 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-01 21:40 [Regression Resend] mmc: mx28: sd card detection broken since 3.18-rc1 Stefan Wahren
2014-11-02 23:01 ` Kristina Martšenko [this message]
2014-11-03 2:23 ` Fabio Estevam
2014-11-03 7:15 ` Stefan Wahren
2014-11-03 20:49 ` Michael Heimpold
2014-11-03 21:50 ` Kristina Martšenko
2014-11-03 23:26 ` Michael Heimpold
2014-11-04 10:30 ` Linus Walleij
2014-11-05 0:22 ` [PATCH] mmc: core: fix card detection regression Kristina Martšenko
2014-11-05 0:48 ` Fabio Estevam
2014-11-05 9:30 ` Ulf Hansson
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=5456B7B3.60401@gmail.com \
--to=kristina.martsenko@gmail.com \
--cc=chris@printf.net \
--cc=festevam@gmail.com \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=stefan.wahren@i2se.com \
--cc=ulf.hansson@linaro.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).