From: Carlos Aguiar <carlos.aguiar@indt.org.br>
To: Tony Lindgren <tony@atomide.com>,
Pierre Ossman <drzeus-list@drzeus.cx>,
ext Philip Langdale <philipl@overt.org>,
omap-linux <linux-omap-open-source@linux.omap.com>,
Juha Yrjola <juha.yrjola@solidboot.com>
Subject: [PATCH] SD working on OMAP platforms
Date: Fri, 30 Mar 2007 16:28:16 -0400 [thread overview]
Message-ID: <460D72E0.7050206@indt.org.br> (raw)
[-- Attachment #1: Type: text/plain, Size: 531 bytes --]
Hi folks,
This patch is a fix in order to make SD cards works again on OMAP platforms.
As we know, on CMD3, response type is R6 to SD cards and R1 to MMC cards.
Following Tony's suggestion, this fix ignores the buggy SD handling on CMD3.
I've tested this patch on H2 and H3 platforms using MMC, SD and SDHC
cards and
looks fine.
BR,
Carlos.
--
Carlos Eduardo
Nokia Institute of Technology - INdT
Open Source Mobile Research Center - OSMRC
Phone: +55 92 2126-1079
Mobile: +55 92 8127-1797
E-mail: carlos.aguiar@indt.org.br
[-- Attachment #2: sd_buggy_handling.diff --]
[-- Type: text/plain, Size: 891 bytes --]
On CMD3, response type is R6 to SD cards and R1 to MMC cards.
This fix ignores the buggy SD handling on CMD3.
Signed-off-by: Carlos Eduardo Aguiar <carlos.aguiar@indt.org.br>
Index: linux-omap/drivers/mmc/omap.c
===================================================================
--- linux-omap.orig/drivers/mmc/omap.c 2007-03-30 09:39:08.000000000 -0400
+++ linux-omap/drivers/mmc/omap.c 2007-03-30 16:14:08.000000000 -0400
@@ -462,6 +462,14 @@ static irqreturn_t mmc_omap_irq(int irq,
mmc_omap_report_irq(status);
printk("\n");
#endif
+ if (host->mmc->mode == MMC_MODE_SD &&
+ host->cmd->opcode == SD_SEND_RELATIVE_ADDR &&
+ status == 0x4000) {
+ dev_dbg(mmc_dev(host->mmc),
+ "buggy SD handling, ignoring it\n");
+ status = 0x0001;
+ }
+
if (host->total_bytes_left) {
if ((status & OMAP_MMC_STAT_A_FULL) ||
(status & OMAP_MMC_STAT_END_OF_DATA))
[-- Attachment #3: Type: text/plain, Size: 0 bytes --]
next reply other threads:[~2007-03-30 20:28 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-03-30 20:28 Carlos Aguiar [this message]
2007-03-31 6:16 ` [PATCH] SD working on OMAP platforms Pierre Ossman
2007-03-31 22:07 ` Carlos Aguiar
2007-04-03 4:37 ` Pierre Ossman
2007-04-03 13:58 ` tony
2007-04-03 13:12 ` Pierre Ossman
2007-04-03 14:50 ` Tony Lindgren
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=460D72E0.7050206@indt.org.br \
--to=carlos.aguiar@indt.org.br \
--cc=drzeus-list@drzeus.cx \
--cc=juha.yrjola@solidboot.com \
--cc=linux-omap-open-source@linux.omap.com \
--cc=philipl@overt.org \
--cc=tony@atomide.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