public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2] mmc/dwmmc: modify FIFO threshold only if value explicitly set
@ 2013-11-27 13:00 Alexey Brodkin
  2013-11-27 13:07 ` Jaehoon Chung
  2013-12-08 12:01 ` Pantelis Antoniou
  0 siblings, 2 replies; 5+ messages in thread
From: Alexey Brodkin @ 2013-11-27 13:00 UTC (permalink / raw)
  To: u-boot

If platform provides "host->fifoth_val" it will be used for
initialization of DWMCI_FIFOTH register. Otherwise default value will be
used.

This implementation allows:
 * escape unclear and recursive calculations that are currently in use
 * use whatever custom value for DWMCI_FIFOTH initialization if any
particular SoC requires it

Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>

Cc: Mischa Jonker <mjonker@synopsys.com>
Cc: Alim Akhtar <alim.akhtar@samsung.com>
Cc: Rajeshwari Shinde <rajeshwari.s@samsung.com>
Cc: Jaehoon Chung <jh80.chung@samsung.com>
Cc: Amar <amarendra.xt@samsung.com>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: Minkyu Kang <mk7.kang@samsung.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: Pantelis Antoniou <panto@antoniou-consulting.com>
Cc: Andy Fleming <afleming@freescale.com>
---
 drivers/mmc/dw_mmc.c | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/drivers/mmc/dw_mmc.c b/drivers/mmc/dw_mmc.c
index 1e0f72b..a47e02c 100644
--- a/drivers/mmc/dw_mmc.c
+++ b/drivers/mmc/dw_mmc.c
@@ -300,7 +300,6 @@ 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;
 
 	if (host->quirks & DWMCI_QUIRK_DISABLE_SMU) {
 		dwmci_writel(host, EMMCP_MPSBEGIN0, 0);
@@ -330,13 +329,9 @@ static int dwmci_init(struct mmc *mmc)
 	dwmci_writel(host, DWMCI_IDINTEN, 0);
 	dwmci_writel(host, DWMCI_BMOD, 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);
+	if (host->fifoth_val) {
+		dwmci_writel(host, DWMCI_FIFOTH, host->fifoth_val);
 	}
-	dwmci_writel(host, DWMCI_FIFOTH, host->fifoth_val);
 
 	dwmci_writel(host, DWMCI_CLKENA, 0);
 	dwmci_writel(host, DWMCI_CLKSRC, 0);
-- 
1.8.4.2

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

* [U-Boot] [PATCH v2] mmc/dwmmc: modify FIFO threshold only if value explicitly set
  2013-11-27 13:00 [U-Boot] [PATCH v2] mmc/dwmmc: modify FIFO threshold only if value explicitly set Alexey Brodkin
@ 2013-11-27 13:07 ` Jaehoon Chung
  2013-12-06 10:52   ` Alexey Brodkin
  2013-12-08 12:01 ` Pantelis Antoniou
  1 sibling, 1 reply; 5+ messages in thread
From: Jaehoon Chung @ 2013-11-27 13:07 UTC (permalink / raw)
  To: u-boot

Acked-by: Jaehoon Chung <jh80.chung@samsung.com>

On 11/27/2013 10:00 PM, Alexey Brodkin wrote:
> If platform provides "host->fifoth_val" it will be used for
> initialization of DWMCI_FIFOTH register. Otherwise default value will be
> used.
> 
> This implementation allows:
>  * escape unclear and recursive calculations that are currently in use
>  * use whatever custom value for DWMCI_FIFOTH initialization if any
> particular SoC requires it
> 
> Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
> 
> Cc: Mischa Jonker <mjonker@synopsys.com>
> Cc: Alim Akhtar <alim.akhtar@samsung.com>
> Cc: Rajeshwari Shinde <rajeshwari.s@samsung.com>
> Cc: Jaehoon Chung <jh80.chung@samsung.com>
> Cc: Amar <amarendra.xt@samsung.com>
> Cc: Kyungmin Park <kyungmin.park@samsung.com>
> Cc: Minkyu Kang <mk7.kang@samsung.com>
> Cc: Simon Glass <sjg@chromium.org>
> Cc: Pantelis Antoniou <panto@antoniou-consulting.com>
> Cc: Andy Fleming <afleming@freescale.com>
> ---
>  drivers/mmc/dw_mmc.c | 9 ++-------
>  1 file changed, 2 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/mmc/dw_mmc.c b/drivers/mmc/dw_mmc.c
> index 1e0f72b..a47e02c 100644
> --- a/drivers/mmc/dw_mmc.c
> +++ b/drivers/mmc/dw_mmc.c
> @@ -300,7 +300,6 @@ 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;
>  
>  	if (host->quirks & DWMCI_QUIRK_DISABLE_SMU) {
>  		dwmci_writel(host, EMMCP_MPSBEGIN0, 0);
> @@ -330,13 +329,9 @@ static int dwmci_init(struct mmc *mmc)
>  	dwmci_writel(host, DWMCI_IDINTEN, 0);
>  	dwmci_writel(host, DWMCI_BMOD, 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);
> +	if (host->fifoth_val) {
> +		dwmci_writel(host, DWMCI_FIFOTH, host->fifoth_val);
>  	}
> -	dwmci_writel(host, DWMCI_FIFOTH, host->fifoth_val);
>  
>  	dwmci_writel(host, DWMCI_CLKENA, 0);
>  	dwmci_writel(host, DWMCI_CLKSRC, 0);
> 

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

* [U-Boot] [PATCH v2] mmc/dwmmc: modify FIFO threshold only if value explicitly set
  2013-11-27 13:07 ` Jaehoon Chung
@ 2013-12-06 10:52   ` Alexey Brodkin
  2013-12-06 10:53     ` Pantelis Antoniou
  0 siblings, 1 reply; 5+ messages in thread
From: Alexey Brodkin @ 2013-12-06 10:52 UTC (permalink / raw)
  To: u-boot

On Wed, 2013-11-27 at 22:07 +0900, Jaehoon Chung wrote:
> Acked-by: Jaehoon Chung <jh80.chung@samsung.com>

Any chance to get this patch applied?

-Alexey

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

* [U-Boot] [PATCH v2] mmc/dwmmc: modify FIFO threshold only if value explicitly set
  2013-12-06 10:52   ` Alexey Brodkin
@ 2013-12-06 10:53     ` Pantelis Antoniou
  0 siblings, 0 replies; 5+ messages in thread
From: Pantelis Antoniou @ 2013-12-06 10:53 UTC (permalink / raw)
  To: u-boot

Hi Alexey,

Will do so over the weekend.

Regards

-- Pantelis
On Dec 6, 2013, at 12:52 PM, Alexey Brodkin wrote:

> On Wed, 2013-11-27 at 22:07 +0900, Jaehoon Chung wrote:
>> Acked-by: Jaehoon Chung <jh80.chung@samsung.com>
> 
> Any chance to get this patch applied?
> 
> -Alexey

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

* [U-Boot] [PATCH v2] mmc/dwmmc: modify FIFO threshold only if value explicitly set
  2013-11-27 13:00 [U-Boot] [PATCH v2] mmc/dwmmc: modify FIFO threshold only if value explicitly set Alexey Brodkin
  2013-11-27 13:07 ` Jaehoon Chung
@ 2013-12-08 12:01 ` Pantelis Antoniou
  1 sibling, 0 replies; 5+ messages in thread
From: Pantelis Antoniou @ 2013-12-08 12:01 UTC (permalink / raw)
  To: u-boot

Hi Alexey,

On Nov 27, 2013, at 3:00 PM, Alexey Brodkin wrote:

> If platform provides "host->fifoth_val" it will be used for
> initialization of DWMCI_FIFOTH register. Otherwise default value will be
> used.
> 
> This implementation allows:
> * escape unclear and recursive calculations that are currently in use
> * use whatever custom value for DWMCI_FIFOTH initialization if any
> particular SoC requires it
> 
> Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
> 
> Cc: Mischa Jonker <mjonker@synopsys.com>
> Cc: Alim Akhtar <alim.akhtar@samsung.com>
> Cc: Rajeshwari Shinde <rajeshwari.s@samsung.com>
> Cc: Jaehoon Chung <jh80.chung@samsung.com>
> Cc: Amar <amarendra.xt@samsung.com>
> Cc: Kyungmin Park <kyungmin.park@samsung.com>
> Cc: Minkyu Kang <mk7.kang@samsung.com>
> Cc: Simon Glass <sjg@chromium.org>
> Cc: Pantelis Antoniou <panto@antoniou-consulting.com>
> Cc: Andy Fleming <afleming@freescale.com>
> ---
> drivers/mmc/dw_mmc.c | 9 ++-------
> 1 file changed, 2 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/mmc/dw_mmc.c b/drivers/mmc/dw_mmc.c
> index 1e0f72b..a47e02c 100644
> --- a/drivers/mmc/dw_mmc.c
> +++ b/drivers/mmc/dw_mmc.c
> @@ -300,7 +300,6 @@ 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;
> 
> 	if (host->quirks & DWMCI_QUIRK_DISABLE_SMU) {
> 		dwmci_writel(host, EMMCP_MPSBEGIN0, 0);
> @@ -330,13 +329,9 @@ static int dwmci_init(struct mmc *mmc)
> 	dwmci_writel(host, DWMCI_IDINTEN, 0);
> 	dwmci_writel(host, DWMCI_BMOD, 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);
> +	if (host->fifoth_val) {
> +		dwmci_writel(host, DWMCI_FIFOTH, host->fifoth_val);
> 	}
> -	dwmci_writel(host, DWMCI_FIFOTH, host->fifoth_val);
> 
> 	dwmci_writel(host, DWMCI_CLKENA, 0);
> 	dwmci_writel(host, DWMCI_CLKSRC, 0);
> -- 
> 1.8.4.2
> 

Acked-by: Pantelis Antoniou <panto@antoniou-consulting.com>

Thanks

-- Pantelis

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

end of thread, other threads:[~2013-12-08 12:01 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-27 13:00 [U-Boot] [PATCH v2] mmc/dwmmc: modify FIFO threshold only if value explicitly set Alexey Brodkin
2013-11-27 13:07 ` Jaehoon Chung
2013-12-06 10:52   ` Alexey Brodkin
2013-12-06 10:53     ` Pantelis Antoniou
2013-12-08 12:01 ` Pantelis Antoniou

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