From: Luca Tettamanti <kronos.it@gmail.com>
To: linux-kernel@vger.kernel.org
Cc: drzeus-mmc@drzeus.cx
Subject: SDHCI: timeout during data transfer
Date: Tue, 23 Sep 2008 23:24:59 +0200 [thread overview]
Message-ID: <20080923212459.GA13888@dreamland.darkstar.lan> (raw)
Hi,
I'm seeing timeout errors when transfering "big" (over 1MB or so) files to a SD
card (small files are ok):
[ 251.956666] mmcblk0: error -110 transferring data
[ 251.979810] end_request: I/O error, dev mmcblk0, sector 1572758
[ 251.981477] Buffer I/O error on device mmcblk0p1, logical block 1572742
[ 251.983198] lost page write due to I/O error on mmcblk0p1
[ 251.983788] end_request: I/O error, dev mmcblk0, sector 1572759
[ 251.983788] Buffer I/O error on device mmcblk0p1, logical block 1572743
[ 251.983788] lost page write due to I/O error on mmcblk0p1
[ 251.983788] end_request: I/O error, dev mmcblk0, sector 1572760
[ 251.983788] Buffer I/O error on device mmcblk0p1, logical block 1572744
[ 251.983788] lost page write due to I/O error on mmcblk0p1
[ 251.983788] end_request: I/O error, dev mmcblk0, sector 1572761
[ 251.983788] Buffer I/O error on device mmcblk0p1, logical block 1572745
[ 251.983788] lost page write due to I/O error on mmcblk0p1
[ 253.513336] mmcblk0: error -110 transferring data
(trashed FS here)
kernel in use is 2.6.27-rc6, and this is the controller:
09:01.1 SD Host controller: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter (rev 22)
09:01.2 System peripheral: Ricoh Co Ltd R5C843 MMC Host Controller (rev 12)
09:01.3 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter (rev 12)
09:01.4 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev 12)
Googling around I found a patch[1] that introduced a quirk to address an
off-by-one issue for the timeout value in certain controllers.
With this patch:
diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c
index e3a8133..46899ee 100644
--- a/drivers/mmc/host/sdhci.c
+++ b/drivers/mmc/host/sdhci.c
@@ -575,7 +575,7 @@ static void sdhci_prepare_data(struct sdhci_host *host, struct mmc_data *data)
host->data = data;
host->data_early = 0;
- count = sdhci_calc_timeout(host, data);
+ count = sdhci_calc_timeout(host, data) + 1;
writeb(count, host->ioaddr + SDHCI_TIMEOUT_CONTROL);
if (host->flags & SDHCI_USE_DMA)
I don't see timeouts anymore (just for reference, I'm not suggesting to apply it
as-is).
Luca
[1] http://www.gossamer-threads.com/lists/linux/kernel/937056
--
Dicono che il cane sia il miglior amico dell'uomo. Secondo me non e`
vero. Quanti dei vostri amici avete fatto castrare, recentemente?
next reply other threads:[~2008-09-23 21:25 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-09-23 21:24 Luca Tettamanti [this message]
2008-10-02 8:17 ` Pierre Ossman
2008-10-02 9:11 ` Luca Tettamanti
2008-10-03 11:27 ` Luca Tettamanti
2008-10-12 8:52 ` Pierre Ossman
2008-10-14 9:34 ` Luca Tettamanti
2008-10-14 21:13 ` Luca Tettamanti
2008-10-14 21:21 ` Luca Tettamanti
2008-10-18 20:46 ` Pierre Ossman
2008-10-20 12:20 ` Luca Tettamanti
2008-10-26 11:35 ` Pierre Ossman
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=20080923212459.GA13888@dreamland.darkstar.lan \
--to=kronos.it@gmail.com \
--cc=drzeus-mmc@drzeus.cx \
--cc=linux-kernel@vger.kernel.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
all inboxes | Powered by JetHome®