* [PATCH] OMAP: HSMMC: avoid erratum workaround when transceiver is attached
@ 2012-03-16 12:49 Grazvydas Ignotas
2012-04-04 14:31 ` Paul Walmsley
0 siblings, 1 reply; 2+ messages in thread
From: Grazvydas Ignotas @ 2012-03-16 12:49 UTC (permalink / raw)
To: linux-arm-kernel
If transceiver is attached to a MMC host of ES2.1 OMAP, it seems
2.1.1.128 erratum doesn't apply and there is no data corruption,
probably because of different signal timing. The workaround for this
erratum disables multiblock reads, which causes dramatic loss of
performance (over 75% slower), so avoid it when transceiver is present.
Cc: Paul Walmsley <paul@pwsan.com>
Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
---
arch/arm/mach-omap2/hsmmc.c | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/arch/arm/mach-omap2/hsmmc.c b/arch/arm/mach-omap2/hsmmc.c
index 100db62..b0268ea 100644
--- a/arch/arm/mach-omap2/hsmmc.c
+++ b/arch/arm/mach-omap2/hsmmc.c
@@ -506,6 +506,13 @@ static void __init omap_hsmmc_init_one(struct omap2_hsmmc_info *hsmmcinfo,
if (oh->dev_attr != NULL) {
mmc_dev_attr = oh->dev_attr;
mmc_data->controller_flags = mmc_dev_attr->flags;
+ /*
+ * erratum 2.1.1.128 doesn't apply if board has
+ * a transceiver is attached
+ */
+ if (hsmmcinfo->transceiver)
+ mmc_data->controller_flags &=
+ ~OMAP_HSMMC_BROKEN_MULTIBLOCK_READ;
}
pdev = platform_device_alloc(name, ctrl_nr - 1);
--
1.7.0.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [PATCH] OMAP: HSMMC: avoid erratum workaround when transceiver is attached
2012-03-16 12:49 [PATCH] OMAP: HSMMC: avoid erratum workaround when transceiver is attached Grazvydas Ignotas
@ 2012-04-04 14:31 ` Paul Walmsley
0 siblings, 0 replies; 2+ messages in thread
From: Paul Walmsley @ 2012-04-04 14:31 UTC (permalink / raw)
To: linux-arm-kernel
On Fri, 16 Mar 2012, Grazvydas Ignotas wrote:
> If transceiver is attached to a MMC host of ES2.1 OMAP, it seems
> 2.1.1.128 erratum doesn't apply and there is no data corruption,
> probably because of different signal timing. The workaround for this
> erratum disables multiblock reads, which causes dramatic loss of
> performance (over 75% slower), so avoid it when transceiver is present.
>
> Cc: Paul Walmsley <paul@pwsan.com>
> Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
Thanks, queued for 3.4-rc.
- Paul
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-04-04 14:31 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-16 12:49 [PATCH] OMAP: HSMMC: avoid erratum workaround when transceiver is attached Grazvydas Ignotas
2012-04-04 14:31 ` Paul Walmsley
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).