linux-mmc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* mmc: dw_mmc: miscaculated the fifo-depth with wrong bit operation
@ 2012-01-09  1:06 Jaehoon Chung
  2012-01-09  9:41 ` James Hogan
  0 siblings, 1 reply; 5+ messages in thread
From: Jaehoon Chung @ 2012-01-09  1:06 UTC (permalink / raw)
  To: linux-mmc; +Cc: Chris Ball, Kyungmin Park, Will Newton, James Hogan

In FIFOTH register, can find "bit[27:16] = FIFO_DEPTH - 1".
Finally, FIFO_DEPTH = bit[27:16] + 1.

Now, Used the 0x7ff. but 0xfff is right.

Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
---
 drivers/mmc/host/dw_mmc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c
index 94e22382..0e34279 100644
--- a/drivers/mmc/host/dw_mmc.c
+++ b/drivers/mmc/host/dw_mmc.c
@@ -1949,7 +1949,7 @@ static int dw_mci_probe(struct platform_device *pdev)
 		 * should put it in the platform data.
 		 */
 		fifo_size = mci_readl(host, FIFOTH);
-		fifo_size = 1 + ((fifo_size >> 16) & 0x7ff);
+		fifo_size = 1 + ((fifo_size >> 16) & 0xfff);
 	} else {
 		fifo_size = host->pdata->fifo_depth;
 	}

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

end of thread, other threads:[~2012-01-11 19:14 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-09  1:06 mmc: dw_mmc: miscaculated the fifo-depth with wrong bit operation Jaehoon Chung
2012-01-09  9:41 ` James Hogan
2012-01-11  9:28   ` James Hogan
2012-01-11  9:59     ` Jaehoon Chung
2012-01-11 19:14       ` Chris Ball

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).