From: kdorfman@codeaurora.org
Cc: cjb@laptop.org, linux-mmc@vger.kernel.org,
Venkatraman S <svenkatr@ti.com>
Subject: Re: [PATCH 4/4] mmc: core: Send HPI only till it is successful
Date: Wed, 9 May 2012 06:22:39 -0700 (PDT) [thread overview]
Message-ID: <5d18897df577fa24297975f3421088c8.squirrel@www.codeaurora.org> (raw)
In-Reply-To: <1334319854-5989-5-git-send-email-svenkatr@ti.com>
Hi,
I see 2 fixes for existing mmc_interrupt_hpi() function:
- [PATCH 4/4] mmc: core: Send HPI only till it is successful"
- [PATCH v2] mmc: core: Fix the HPI execution sequence
They are exclusive. Can you explain how final solution will look like?
Thanks,
Kostya
> Try to send HPI only a fixed number of times till it is
> successful. One successful transfer is enough - but wait
> till the card comes out of transfer state.
> Return an error if the card was not in programming state to
> begin with - so that the caller knows that HPI was not sent.
>
> Reported-by: Alex Lemberg <Alex.Lemberg@sandisk.com>
> Signed-off-by: Venkatraman S <svenkatr@ti.com>
> ---
> drivers/mmc/core/core.c | 34 ++++++++++++++++++----------------
> 1 file changed, 18 insertions(+), 16 deletions(-)
>
> diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c
> index e541efb..ceabef5 100644
> --- a/drivers/mmc/core/core.c
> +++ b/drivers/mmc/core/core.c
> @@ -401,7 +401,7 @@ EXPORT_SYMBOL(mmc_wait_for_req);
> */
> int mmc_interrupt_hpi(struct mmc_card *card)
> {
> - int err;
> + int err, i;
> u32 status;
>
> BUG_ON(!card);
> @@ -421,27 +421,29 @@ int mmc_interrupt_hpi(struct mmc_card *card)
> /*
> * If the card status is in PRG-state, we can send the HPI command.
> */
> + err = -EINVAL;
> if (R1_CURRENT_STATE(status) == R1_STATE_PRG) {
> - do {
> - /*
> - * We don't know when the HPI command will finish
> - * processing, so we need to resend HPI until out
> - * of prg-state, and keep checking the card status
> - * with SEND_STATUS. If a timeout error occurs when
> - * sending the HPI command, we are already out of
> - * prg-state.
> - */
> + /* To prevent an infinite lockout, try to send HPI
> + * a fixed number of times and bailout if it can't
> + * succeed.
> + */
> + for (i = 0; i < 10 && err != 0 ; i++)
> err = mmc_send_hpi_cmd(card, &status);
> - if (err)
> + /* Once HPI was sent successfully, the card is
> + * supposed to be back to transfer state.
> + */
> + do {
> + if (err) {
> pr_debug("%s: abort HPI (%d error)\n",
> mmc_hostname(card->host), err);
> -
> - err = mmc_send_status(card, &status);
> - if (err)
> break;
> + }
> + err = mmc_send_status(card, &status);
> } while (R1_CURRENT_STATE(status) == R1_STATE_PRG);
> - } else
> - pr_debug("%s: Left prg-state\n", mmc_hostname(card->host));
> + } else {
> + pr_debug("%s: Can't send HPI. State=%d\n",
> + mmc_hostname(card->host), R1_CURRENT_STATE(status));
> + }
>
> out:
> mmc_release_host(card->host);
> --
> 1.7.10.rc2
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
next prev parent reply other threads:[~2012-05-09 13:22 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-04-13 12:24 [PATCH 0/4] mmc: core and queue cleanups Venkatraman S
2012-04-13 12:24 ` [PATCH 1/4] mmc: queue: rename mmc_request function Venkatraman S
2012-04-18 23:04 ` Namjae Jeon
2012-04-13 12:24 ` [PATCH 2/4] mmc: include cd-gpio.h in the source file Venkatraman S
2012-04-18 23:08 ` Namjae Jeon
2012-04-13 12:24 ` [PATCH 3/4] mmc: queue: remove redundant memsets Venkatraman S
2012-04-18 23:02 ` Namjae Jeon
2012-04-13 12:24 ` [PATCH 4/4] mmc: core: Send HPI only till it is successful Venkatraman S
2012-04-13 14:39 ` Namjae Jeon
2012-04-13 15:58 ` S, Venkatraman
2012-04-14 0:35 ` Namjae Jeon
2012-04-15 15:10 ` Jae hoon Chung
2012-04-17 12:06 ` S, Venkatraman
2012-05-09 14:50 ` Philip Rakity
2012-05-11 10:07 ` S, Venkatraman
2012-04-19 4:29 ` Chris Ball
2012-04-19 4:33 ` S, Venkatraman
2012-05-09 13:22 ` kdorfman [this message]
2012-05-09 13:43 ` S, Venkatraman
2012-05-09 14:11 ` [PATCH 0/4] mmc: core and queue cleanups Chris Ball
2012-05-09 14:15 ` S, Venkatraman
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=5d18897df577fa24297975f3421088c8.squirrel@www.codeaurora.org \
--to=kdorfman@codeaurora.org \
--cc=cjb@laptop.org \
--cc=linux-mmc@vger.kernel.org \
--cc=svenkatr@ti.com \
/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.