diff mbox

[V2] MMC: DWMMC: Fix FIFO_DEPTH calculation

Message ID 1369399534-30320-1-git-send-email-rajeshwari.s@samsung.com
State Accepted
Commit ed7bdc03eb516fb698ccc12ec5b4b9f132d05c5f
Headers show

Commit Message

Rajeshwari Shinde May 24, 2013, 12:45 p.m. UTC
Current DWMMC driver used to give FIFO underrun/overrun error every 3rd time
for mmc rescan command.
In current code FIFO_DEPTH is getting calculated after reading the default FIFOTH
register and extracting the RX_WMARK bits from it i.e (RX_WMARK = FIFO_DEPTH/2 -1).
Instead of storing the correct value, we were recalculating the FIFO_DEPT each
time which is not correct.

Based on "[PATCH V9 3/9] DWMMC: Initialise dwmci and resolve EMMC read write issues"
http://permalink.gmane.org/gmane.comp.boot-loaders.u-boot/160247

Signed-off-by: Hatim Ali <hatim.rv@samsung.com>
Signed-off-by: Rajeshwari Shinde <rajeshwari.s@samsung.com>
---
Changes in V2:
	- remove fifoth_val local variable
	- Rebased on top of "[PATCH V9 3/9] DWMMC: Initialise dwmci and resolve
	EMMC read write issues".
 drivers/mmc/dw_mmc.c |   14 ++++++--------
 1 files changed, 6 insertions(+), 8 deletions(-)

Comments

Simon Glass May 26, 2013, 8:32 p.m. UTC | #1
On Fri, May 24, 2013 at 5:45 AM, Rajeshwari Shinde <rajeshwari.s@samsung.com
> wrote:

> Current DWMMC driver used to give FIFO underrun/overrun error every 3rd
> time
> for mmc rescan command.
> In current code FIFO_DEPTH is getting calculated after reading the default
> FIFOTH
> register and extracting the RX_WMARK bits from it i.e (RX_WMARK =
> FIFO_DEPTH/2 -1).
> Instead of storing the correct value, we were recalculating the FIFO_DEPT
> each
>

DEPTH


> time which is not correct.
>
> Based on "[PATCH V9 3/9] DWMMC: Initialise dwmci and resolve EMMC read
> write issues"
> http://permalink.gmane.org/gmane.comp.boot-loaders.u-boot/160247
>
> Signed-off-by: Hatim Ali <hatim.rv@samsung.com>
> Signed-off-by: Rajeshwari Shinde <rajeshwari.s@samsung.com>
>

Acked-by: Simon Glass <sjg@chromium.org>

Tested on pit using 'mmc rescan' and saw no problems now.

Tested-by: Simon Glass <sjg@chromium.org>


> ---
> Changes in V2:
>         - remove fifoth_val local variable
>         - Rebased on top of "[PATCH V9 3/9] DWMMC: Initialise dwmci and
> resolve
>         EMMC read write issues".
>  drivers/mmc/dw_mmc.c |   14 ++++++--------
>  1 files changed, 6 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/mmc/dw_mmc.c b/drivers/mmc/dw_mmc.c
> index 1307b12..5da20ed 100644
> --- a/drivers/mmc/dw_mmc.c
> +++ b/drivers/mmc/dw_mmc.c
> @@ -312,7 +312,7 @@ static void dwmci_set_ios(struct mmc *mmc)
>  static int dwmci_init(struct mmc *mmc)
>  {
>         struct dwmci_host *host = (struct dwmci_host *)mmc->priv;
> -       u32 fifo_size, fifoth_val;
> +       u32 fifo_size;
>
>         dwmci_writel(host, DWMCI_PWREN, 1);
>
> @@ -332,15 +332,13 @@ static int dwmci_init(struct mmc *mmc)
>         dwmci_writel(host, DWMCI_IDINTEN, 0);
>         dwmci_writel(host, DWMCI_BMOD, 1);
>
> -       fifo_size = dwmci_readl(host, DWMCI_FIFOTH);
> -       fifo_size = ((fifo_size & RX_WMARK_MASK) >> RX_WMARK_SHIFT) + 1;
> -       if (host->fifoth_val) {
> -               fifoth_val = host->fifoth_val;
> -       } else {
> -               fifoth_val = MSIZE(0x2) | RX_WMARK(fifo_size / 2 - 1) |
> +       if (!host->fifoth_val) {
> +               fifo_size = dwmci_readl(host, DWMCI_FIFOTH);
> +               fifo_size = ((fifo_size & RX_WMARK_MASK) >>
> RX_WMARK_SHIFT) + 1;
> +               host->fifoth_val = MSIZE(0x2) | RX_WMARK(fifo_size / 2 -
> 1) |
>                         TX_WMARK(fifo_size / 2);
>         }
> -       dwmci_writel(host, DWMCI_FIFOTH, fifoth_val);
> +       dwmci_writel(host, DWMCI_FIFOTH, host->fifoth_val);
>
>         dwmci_writel(host, DWMCI_CLKENA, 0);
>         dwmci_writel(host, DWMCI_CLKSRC, 0);
> --
> 1.7.4.4
>
>
Jaehoon Chung May 27, 2013, 3:43 a.m. UTC | #2
Acked-by: Jaehoon Chung <jh80.chung@samsung.com>

Thanks,
Jaehoon Chung

On 05/27/2013 05:32 AM, Simon Glass wrote:
> On Fri, May 24, 2013 at 5:45 AM, Rajeshwari Shinde <rajeshwari.s@samsung.com <mailto:rajeshwari.s@samsung.com>> wrote:
> 
>     Current DWMMC driver used to give FIFO underrun/overrun error every 3rd time
>     for mmc rescan command.
>     In current code FIFO_DEPTH is getting calculated after reading the default FIFOTH
>     register and extracting the RX_WMARK bits from it i.e (RX_WMARK = FIFO_DEPTH/2 -1).
>     Instead of storing the correct value, we were recalculating the FIFO_DEPT each
> 
> 
> DEPTH
>  
> 
>     time which is not correct.
> 
>     Based on "[PATCH V9 3/9] DWMMC: Initialise dwmci and resolve EMMC read write issues"
>     http://permalink.gmane.org/gmane.comp.boot-loaders.u-boot/160247
> 
>     Signed-off-by: Hatim Ali <hatim.rv@samsung.com <mailto:hatim.rv@samsung.com>>
>     Signed-off-by: Rajeshwari Shinde <rajeshwari.s@samsung.com <mailto:rajeshwari.s@samsung.com>>
> 
> 
> Acked-by: Simon Glass <sjg@chromium.org <mailto:sjg@chromium.org>>
> 
> Tested on pit using 'mmc rescan' and saw no problems now.
> 
> Tested-by: Simon Glass <sjg@chromium.org <mailto:sjg@chromium.org>>
>  
> 
>     ---
>     Changes in V2:
>             - remove fifoth_val local variable
>             - Rebased on top of "[PATCH V9 3/9] DWMMC: Initialise dwmci and resolve
>             EMMC read write issues".
>      drivers/mmc/dw_mmc.c |   14 ++++++--------
>      1 files changed, 6 insertions(+), 8 deletions(-)
> 
>     diff --git a/drivers/mmc/dw_mmc.c b/drivers/mmc/dw_mmc.c
>     index 1307b12..5da20ed 100644
>     --- a/drivers/mmc/dw_mmc.c
>     +++ b/drivers/mmc/dw_mmc.c
>     @@ -312,7 +312,7 @@ static void dwmci_set_ios(struct mmc *mmc)
>      static int dwmci_init(struct mmc *mmc)
>      {
>             struct dwmci_host *host = (struct dwmci_host *)mmc->priv;
>     -       u32 fifo_size, fifoth_val;
>     +       u32 fifo_size;
> 
>             dwmci_writel(host, DWMCI_PWREN, 1);
> 
>     @@ -332,15 +332,13 @@ static int dwmci_init(struct mmc *mmc)
>             dwmci_writel(host, DWMCI_IDINTEN, 0);
>             dwmci_writel(host, DWMCI_BMOD, 1);
> 
>     -       fifo_size = dwmci_readl(host, DWMCI_FIFOTH);
>     -       fifo_size = ((fifo_size & RX_WMARK_MASK) >> RX_WMARK_SHIFT) + 1;
>     -       if (host->fifoth_val) {
>     -               fifoth_val = host->fifoth_val;
>     -       } else {
>     -               fifoth_val = MSIZE(0x2) | RX_WMARK(fifo_size / 2 - 1) |
>     +       if (!host->fifoth_val) {
>     +               fifo_size = dwmci_readl(host, DWMCI_FIFOTH);
>     +               fifo_size = ((fifo_size & RX_WMARK_MASK) >> RX_WMARK_SHIFT) + 1;
>     +               host->fifoth_val = MSIZE(0x2) | RX_WMARK(fifo_size / 2 - 1) |
>                             TX_WMARK(fifo_size / 2);
>             }
>     -       dwmci_writel(host, DWMCI_FIFOTH, fifoth_val);
>     +       dwmci_writel(host, DWMCI_FIFOTH, host->fifoth_val);
> 
>             dwmci_writel(host, DWMCI_CLKENA, 0);
>             dwmci_writel(host, DWMCI_CLKSRC, 0);
>     --
>     1.7.4.4
> 
>
Andy Fleming June 13, 2013, 10:34 p.m. UTC | #3
On Fri, May 24, 2013 at 06:15:34PM +0530, Rajeshwari Shinde wrote:
> Current DWMMC driver used to give FIFO underrun/overrun error every 3rd time
> for mmc rescan command.
> In current code FIFO_DEPTH is getting calculated after reading the default FIFOTH
> register and extracting the RX_WMARK bits from it i.e (RX_WMARK = FIFO_DEPTH/2 -1).
> Instead of storing the correct value, we were recalculating the FIFO_DEPT each
> time which is not correct.
> 
> Based on "[PATCH V9 3/9] DWMMC: Initialise dwmci and resolve EMMC read write issues"
> http://permalink.gmane.org/gmane.comp.boot-loaders.u-boot/160247
> 
> Signed-off-by: Hatim Ali <hatim.rv@samsung.com>
> Signed-off-by: Rajeshwari Shinde <rajeshwari.s@samsung.com>
> Acked-by: Simon Glass <sjg@chromium.org>
> Tested-by: Simon Glass <sjg@chromium.org>
> Acked-by: Jaehoon Chung <jh80.chung@samsung.com>

Acked-by: Andy Fleming <afleming@freescale.com>

Looks like the patch this is based on is already accepted, but not yet
upstream, so I'm going to delegate the patch to Minkyu Kang
Minkyu Kang June 17, 2013, 2:07 a.m. UTC | #4
On 14/06/13 07:34, Andy Fleming wrote:
> On Fri, May 24, 2013 at 06:15:34PM +0530, Rajeshwari Shinde wrote:
>> Current DWMMC driver used to give FIFO underrun/overrun error every 3rd time
>> for mmc rescan command.
>> In current code FIFO_DEPTH is getting calculated after reading the default FIFOTH
>> register and extracting the RX_WMARK bits from it i.e (RX_WMARK = FIFO_DEPTH/2 -1).
>> Instead of storing the correct value, we were recalculating the FIFO_DEPT each
>> time which is not correct.
>>
>> Based on "[PATCH V9 3/9] DWMMC: Initialise dwmci and resolve EMMC read write issues"
>> http://permalink.gmane.org/gmane.comp.boot-loaders.u-boot/160247
>>
>> Signed-off-by: Hatim Ali <hatim.rv@samsung.com>
>> Signed-off-by: Rajeshwari Shinde <rajeshwari.s@samsung.com>
>> Acked-by: Simon Glass <sjg@chromium.org>
>> Tested-by: Simon Glass <sjg@chromium.org>
>> Acked-by: Jaehoon Chung <jh80.chung@samsung.com>
> 
> Acked-by: Andy Fleming <afleming@freescale.com>
> 
> Looks like the patch this is based on is already accepted, but not yet
> upstream, so I'm going to delegate the patch to Minkyu Kang
> 
> 
> 

applied to u-boot-samsung.

Thanks,
Minkyu Kang.
diff mbox

Patch

diff --git a/drivers/mmc/dw_mmc.c b/drivers/mmc/dw_mmc.c
index 1307b12..5da20ed 100644
--- a/drivers/mmc/dw_mmc.c
+++ b/drivers/mmc/dw_mmc.c
@@ -312,7 +312,7 @@  static void dwmci_set_ios(struct mmc *mmc)
 static int dwmci_init(struct mmc *mmc)
 {
 	struct dwmci_host *host = (struct dwmci_host *)mmc->priv;
-	u32 fifo_size, fifoth_val;
+	u32 fifo_size;
 
 	dwmci_writel(host, DWMCI_PWREN, 1);
 
@@ -332,15 +332,13 @@  static int dwmci_init(struct mmc *mmc)
 	dwmci_writel(host, DWMCI_IDINTEN, 0);
 	dwmci_writel(host, DWMCI_BMOD, 1);
 
-	fifo_size = dwmci_readl(host, DWMCI_FIFOTH);
-	fifo_size = ((fifo_size & RX_WMARK_MASK) >> RX_WMARK_SHIFT) + 1;
-	if (host->fifoth_val) {
-		fifoth_val = host->fifoth_val;
-	} else {
-		fifoth_val = MSIZE(0x2) | RX_WMARK(fifo_size / 2 - 1) |
+	if (!host->fifoth_val) {
+		fifo_size = dwmci_readl(host, DWMCI_FIFOTH);
+		fifo_size = ((fifo_size & RX_WMARK_MASK) >> RX_WMARK_SHIFT) + 1;
+		host->fifoth_val = MSIZE(0x2) | RX_WMARK(fifo_size / 2 - 1) |
 			TX_WMARK(fifo_size / 2);
 	}
-	dwmci_writel(host, DWMCI_FIFOTH, fifoth_val);
+	dwmci_writel(host, DWMCI_FIFOTH, host->fifoth_val);
 
 	dwmci_writel(host, DWMCI_CLKENA, 0);
 	dwmci_writel(host, DWMCI_CLKSRC, 0);