public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tmio_mmc: Make ack_mmc_irqs() write-only
@ 2010-07-20  7:51 Yusuke Goda
  2010-07-23 11:10 ` Magnus Damm
  2010-08-20 15:12 ` Arnd Hannemann
  0 siblings, 2 replies; 4+ messages in thread
From: Yusuke Goda @ 2010-07-20  7:51 UTC (permalink / raw)
  To: ian, damm, sameo, Paul Mundt, g.liakhovetski, linux-mmc,
	linux-kernel
  Cc: Andrew Morton

This patch updates ack_mmc_irqs() to acknowledge using write instead
of read-modify-write. Without this fix the old read-modify-write
implementation may acknowledge interrupt sources by mistake. The
driver may if so lock-up waiting forever for an interrupt that will
never come. Observed with the TMIO_STAT_RXRDY bit together with CMD53
on AR6002 and BCM4318 SDIO cards in polled mode.

Signed-off-by: Yusuke Goda <yusuke.goda.sx@renesas.com>
---
 drivers/mmc/host/tmio_mmc.h |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)

diff --git a/drivers/mmc/host/tmio_mmc.h b/drivers/mmc/host/tmio_mmc.h
index 64f7d5d..7944604 100644
--- a/drivers/mmc/host/tmio_mmc.h
+++ b/drivers/mmc/host/tmio_mmc.h
@@ -82,10 +82,7 @@

 #define ack_mmc_irqs(host, i) \
 	do { \
-		u32 mask;\
-		mask  = sd_ctrl_read32((host), CTL_STATUS); \
-		mask &= ~((i) & TMIO_MASK_IRQ); \
-		sd_ctrl_write32((host), CTL_STATUS, mask); \
+		sd_ctrl_write32((host), CTL_STATUS, ~(i)); \
 	} while (0)


-- 
1.7.0




^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-08-20 22:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-20  7:51 [PATCH] tmio_mmc: Make ack_mmc_irqs() write-only Yusuke Goda
2010-07-23 11:10 ` Magnus Damm
2010-08-20 15:12 ` Arnd Hannemann
2010-08-20 22:55   ` Magnus Damm

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox