From: Jaehoon Chung <jh80.chung@samsung.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH V8 3/9] DWMMC: Initialise dwmci and resolve EMMC read write issues
Date: Tue, 09 Apr 2013 19:49:49 +0900 [thread overview]
Message-ID: <5163F24D.5040700@samsung.com> (raw)
In-Reply-To: <1364998113-13428-4-git-send-email-amarendra.xt@samsung.com>
Hi Amar,
I'm not sure that need to enable the auto-stop command feature.
why do you enable this feature? Is there any benefit?
Is it related with read/write issue?
Best Regards,
Jaehoon Chung
On 04/03/2013 11:08 PM, Amar wrote:
> This patch enumerates dwmci and set auto stop command during
> dwmci initialisation.
> EMMC read/write is not happening in current implementation
> due to improper fifo size computation. Hence modified the fifo size
> computation to resolve EMMC read write issues.
>
> Signed-off-by: Amar <amarendra.xt@samsung.com>
> ---
> Changes since V1:
> 1)Created the macros RX_WMARK_SHIFT and RX_WMARK_MASK in header file.
>
> Changes since V2:
> 1)Updation of commit message and resubmition of proper patch set.
>
> Changes since V3:
> 1)Updated to use the macro DWMCI_CTRL_SEND_AS_CCSD instead of
> the hard coded value (1 << 10).
>
> Changes since V4:
> 1)Updated the function dwmci_send_cmd() to use get_timer() instead
> of using mdelay(1).
>
> Changes since V5:
> 1)Updated in response to review comments.
>
> Changes since V6:
> No change.
>
> Changes since V7:
> 1)Updated the function dwmci_setup_bus() to return 0 if (freq == 0).
> This is to avoid the run time exception "raise:Signal # 8 caught".
>
> drivers/mmc/dw_mmc.c | 28 ++++++++++++++++++----------
> 1 file changed, 18 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/mmc/dw_mmc.c b/drivers/mmc/dw_mmc.c
> index 4070d4e..963a515 100644
> --- a/drivers/mmc/dw_mmc.c
> +++ b/drivers/mmc/dw_mmc.c
> @@ -129,13 +129,13 @@ static int dwmci_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
> unsigned int timeout = 100000;
> u32 retry = 10000;
> u32 mask, ctrl;
> + ulong start = get_timer(0);
>
> while (dwmci_readl(host, DWMCI_STATUS) & DWMCI_BUSY) {
> - if (timeout == 0) {
> + if (get_timer(start) > timeout) {
> printf("Timeout on data busy\n");
> return TIMEOUT;
> }
> - timeout--;
> }
>
> dwmci_writel(host, DWMCI_RINTSTS, DWMCI_INTMSK_ALL);
> @@ -143,7 +143,6 @@ static int dwmci_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
> if (data)
> dwmci_prepare_data(host, data);
>
> -
> dwmci_writel(host, DWMCI_CMDARG, cmd->cmdarg);
>
> if (data)
> @@ -231,9 +230,8 @@ static int dwmci_setup_bus(struct dwmci_host *host, u32 freq)
> int timeout = 10000;
> unsigned long sclk;
>
> - if (freq == host->clock)
> + if ((freq == host->clock) || (freq == 0))
> return 0;
> -
> /*
> * If host->mmc_clk didn't define,
> * then assume that host->bus_hz is source clock value.
> @@ -314,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, fifoth_val, ier;
>
> dwmci_writel(host, DWMCI_PWREN, 1);
>
> @@ -323,6 +321,14 @@ static int dwmci_init(struct mmc *mmc)
> return -1;
> }
>
> + /* Enumerate at 400KHz */
> + dwmci_setup_bus(host, mmc->f_min);
> +
> + /* Set auto stop command */
> + ier = dwmci_readl(host, DWMCI_CTRL);
> + ier |= DWMCI_CTRL_SEND_AS_CCSD;
> + dwmci_writel(host, DWMCI_CTRL, ier);
> +
> dwmci_writel(host, DWMCI_RINTSTS, 0xFFFFFFFF);
> dwmci_writel(host, DWMCI_INTMASK, 0);
>
> @@ -332,11 +338,13 @@ static int dwmci_init(struct mmc *mmc)
> dwmci_writel(host, DWMCI_BMOD, 1);
>
> fifo_size = dwmci_readl(host, DWMCI_FIFOTH);
> - if (host->fifoth_val)
> + 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) |
> - TX_WMARK(fifo_size/2);
> + } else {
> + 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_CLKENA, 0);
>
next prev parent reply other threads:[~2013-04-09 10:49 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-03 14:08 [U-Boot] [PATCH V8 0/9] EXYNOS5: Enable DWMMC, add FDT support for DWMMC and Amar
2013-04-03 14:08 ` [U-Boot] [PATCH V8 1/9] FDT: Add compatible string for DWMMC Amar
2013-04-03 14:08 ` [U-Boot] [PATCH V8 2/9] EXYNOS5: FDT: Add DWMMC device node data Amar
2013-04-03 14:08 ` [U-Boot] [PATCH V8 3/9] DWMMC: Initialise dwmci and resolve EMMC read write issues Amar
2013-04-09 10:49 ` Jaehoon Chung [this message]
2013-04-09 12:40 ` Amarendra Reddy
2013-04-03 14:08 ` [U-Boot] [PATCH V8 4/9] EXYNOS5: DWMMC: Added FDT support for DWMMC Amar
2013-04-09 10:53 ` Jaehoon Chung
2013-04-10 6:13 ` Amarendra Reddy
2013-04-12 11:20 ` Jaehoon Chung
2013-04-16 8:44 ` Amarendra Reddy
2013-04-23 3:57 ` Jaehoon Chung
2013-04-23 4:33 ` Amarendra Reddy
2013-04-03 14:08 ` [U-Boot] [PATCH V8 5/9] EXYNOS5: DWMMC: Initialise the local variable to avoid unwanted results Amar
2013-04-09 10:54 ` Jaehoon Chung
2013-04-03 14:08 ` [U-Boot] [PATCH V8 6/9] SMDK5250: Initialise and Enable DWMMC, support FDT and non-FDT Amar
2013-04-03 14:08 ` [U-Boot] [PATCH V8 7/9] MMC: APIs to support resize of EMMC boot partition Amar
2013-04-03 14:08 ` [U-Boot] [PATCH V8 8/9] SMDK5250: Enable EMMC booting Amar
2013-04-03 14:08 ` [U-Boot] [PATCH V8 9/9] COMMON: MMC: Command to support EMMC booting and to resize EMMC boot partition Amar
2013-04-05 6:21 ` Jaehoon Chung
2013-04-05 7:39 ` Amarendra Reddy
2013-04-09 10:55 ` Minkyu Kang
2013-04-09 11:27 ` Amarendra Reddy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5163F24D.5040700@samsung.com \
--to=jh80.chung@samsung.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.