From: Anton Vorontsov <cbouatmailru@gmail.com>
To: Grant Likely <grant.likely@secretlab.ca>
Cc: Roy Zang <tie-fei.zang@freescale.com>,
linuxppc-dev@ozlabs.org, akpm@linux-foundation.org,
linux-mmc@vger.kernel.org
Subject: Re: [PATCH 1/3 v2] sdhci: Add auto CMD12 support for eSDHC driver
Date: Mon, 9 Aug 2010 21:43:33 +0400 [thread overview]
Message-ID: <20100809174333.GC7665@oksana.dev.rtsoft.ru> (raw)
In-Reply-To: <AANLkTinJKO3-iXOXuL7CMWCj5qMMHyMrtnadwPpqTeBu@mail.gmail.com>
On Wed, Aug 04, 2010 at 07:02:56PM -0600, Grant Likely wrote:
> On Mon, Aug 2, 2010 at 9:11 PM, Roy Zang <tie-fei.zang@freescale.com> wrote:
> > From: Jerry Huang <Chang-Ming.Huang@freescale.com>
> >
> > Add auto CMD12 command support for eSDHC driver.
> > This is needed by P4080 and P1022 for block read/write.
> > Manual asynchronous CMD12 abort operation causes protocol violations on
> > these silicons.
> >
> > Signed-off-by: Jerry Huang <Chang-Ming.Huang@freescale.com>
> > Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
> > ---
> > drivers/mmc/host/sdhci-of-core.c | 4 ++++
> > drivers/mmc/host/sdhci.c | 14 ++++++++++++--
> > drivers/mmc/host/sdhci.h | 2 ++
> > 3 files changed, 18 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c
> > index c6d1bd8..a92566e 100644
> > --- a/drivers/mmc/host/sdhci.c
> > +++ b/drivers/mmc/host/sdhci.c
> > @@ -817,8 +817,12 @@ static void sdhci_set_transfer_mode(struct sdhci_host *host,
> > WARN_ON(!host->data);
> >
> > mode = SDHCI_TRNS_BLK_CNT_EN;
> > - if (data->blocks > 1)
> > - mode |= SDHCI_TRNS_MULTI;
> > + if (data->blocks > 1) {
> > + if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12)
> > + mode |= SDHCI_TRNS_MULTI | SDHCI_TRNS_ACMD12;
> > + else
> > + mode |= SDHCI_TRNS_MULTI;
>
> nit:
> + mode |= SDHCI_TRNS_MULTI;
> + if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12)
> + mode |= SDHCI_TRNS_ACMD12;
>
> Clearer, no?
Much clearer. I would prefer the nit incorporated.
Another nit:
> @@ -154,6 +154,10 @@ static int __devinit sdhci_of_probe(struct of_device *ofdev,
> host->ops = &sdhci_of_data->ops;
> }
>
> + if (of_get_property(np, "sdhci,auto-cmd12", NULL))
> + host->quirks |= SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12;
> +
> +
^^ No need for the two empty lines.
> if (of_get_property(np, "sdhci,1-bit-only", NULL))
Though, technically the patch looks OK, feel free to add my
Acked-by: Anton Vorontsov <cbouatmailru@gmail.com>
on the next resend (if any).
Thanks Roy!
--
Anton Vorontsov
email: cbouatmailru@gmail.com
irc://irc.freenode.net/bd2
WARNING: multiple messages have this Message-ID (diff)
From: Anton Vorontsov <cbouatmailru@gmail.com>
To: Grant Likely <grant.likely@secretlab.ca>
Cc: linux-mmc@vger.kernel.org, linuxppc-dev@ozlabs.org,
akpm@linux-foundation.org
Subject: Re: [PATCH 1/3 v2] sdhci: Add auto CMD12 support for eSDHC driver
Date: Mon, 9 Aug 2010 21:43:33 +0400 [thread overview]
Message-ID: <20100809174333.GC7665@oksana.dev.rtsoft.ru> (raw)
In-Reply-To: <AANLkTinJKO3-iXOXuL7CMWCj5qMMHyMrtnadwPpqTeBu@mail.gmail.com>
On Wed, Aug 04, 2010 at 07:02:56PM -0600, Grant Likely wrote:
> On Mon, Aug 2, 2010 at 9:11 PM, Roy Zang <tie-fei.zang@freescale.com> wrote:
> > From: Jerry Huang <Chang-Ming.Huang@freescale.com>
> >
> > Add auto CMD12 command support for eSDHC driver.
> > This is needed by P4080 and P1022 for block read/write.
> > Manual asynchronous CMD12 abort operation causes protocol violations on
> > these silicons.
> >
> > Signed-off-by: Jerry Huang <Chang-Ming.Huang@freescale.com>
> > Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
> > ---
> > drivers/mmc/host/sdhci-of-core.c | 4 ++++
> > drivers/mmc/host/sdhci.c | 14 ++++++++++++--
> > drivers/mmc/host/sdhci.h | 2 ++
> > 3 files changed, 18 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c
> > index c6d1bd8..a92566e 100644
> > --- a/drivers/mmc/host/sdhci.c
> > +++ b/drivers/mmc/host/sdhci.c
> > @@ -817,8 +817,12 @@ static void sdhci_set_transfer_mode(struct sdhci_host *host,
> > WARN_ON(!host->data);
> >
> > mode = SDHCI_TRNS_BLK_CNT_EN;
> > - if (data->blocks > 1)
> > - mode |= SDHCI_TRNS_MULTI;
> > + if (data->blocks > 1) {
> > + if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12)
> > + mode |= SDHCI_TRNS_MULTI | SDHCI_TRNS_ACMD12;
> > + else
> > + mode |= SDHCI_TRNS_MULTI;
>
> nit:
> + mode |= SDHCI_TRNS_MULTI;
> + if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12)
> + mode |= SDHCI_TRNS_ACMD12;
>
> Clearer, no?
Much clearer. I would prefer the nit incorporated.
Another nit:
> @@ -154,6 +154,10 @@ static int __devinit sdhci_of_probe(struct of_device *ofdev,
> host->ops = &sdhci_of_data->ops;
> }
>
> + if (of_get_property(np, "sdhci,auto-cmd12", NULL))
> + host->quirks |= SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12;
> +
> +
^^ No need for the two empty lines.
> if (of_get_property(np, "sdhci,1-bit-only", NULL))
Though, technically the patch looks OK, feel free to add my
Acked-by: Anton Vorontsov <cbouatmailru@gmail.com>
on the next resend (if any).
Thanks Roy!
--
Anton Vorontsov
email: cbouatmailru@gmail.com
irc://irc.freenode.net/bd2
next prev parent reply other threads:[~2010-08-09 17:43 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-08-03 3:11 [PATCH 1/3 v2] sdhci: Add auto CMD12 support for eSDHC driver Roy Zang
2010-08-03 3:11 ` [PATCH 2/3 v2] dts: Add sdhci,auto-cmd12 field for p4080 device tree Roy Zang
2010-08-03 3:11 ` [PATCH 3/3 v2] dts: Add ESDHC weird voltage bits workaround Roy Zang
2010-08-09 17:33 ` Anton Vorontsov
2010-08-09 17:33 ` Anton Vorontsov
2010-08-05 0:08 ` [PATCH 2/3 v2] dts: Add sdhci,auto-cmd12 field for p4080 device tree Grant Likely
2010-08-05 0:08 ` [PATCH 2/3 v2] dts: Add sdhci, auto-cmd12 " Grant Likely
2010-08-09 17:36 ` [PATCH 2/3 v2] dts: Add sdhci,auto-cmd12 " Anton Vorontsov
2010-08-09 17:36 ` Anton Vorontsov
2010-08-03 23:43 ` [PATCH 1/3 v2] sdhci: Add auto CMD12 support for eSDHC driver Andrew Morton
2010-08-03 23:43 ` Andrew Morton
2010-08-04 2:57 ` Zang Roy-R61911
2010-08-04 2:57 ` Zang Roy-R61911
2010-08-05 1:02 ` Grant Likely
2010-08-05 1:02 ` Grant Likely
2010-08-05 2:14 ` Zang Roy-R61911
2010-08-05 2:14 ` Zang Roy-R61911
2010-08-09 5:50 ` Grant Likely
2010-08-09 5:50 ` Grant Likely
2010-08-09 17:43 ` Anton Vorontsov [this message]
2010-08-09 17:43 ` Anton Vorontsov
2010-08-10 10:04 ` Zang Roy-R61911
2010-08-10 10:04 ` Zang Roy-R61911
2010-08-10 9:47 ` Zang Roy-R61911
2010-08-10 9:47 ` Zang Roy-R61911
2010-08-09 18:24 ` Michał Mirosław
2010-08-09 18:24 ` Michał Mirosław
2010-08-10 10:07 ` Zang Roy-R61911
2010-08-10 10:07 ` Zang Roy-R61911
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=20100809174333.GC7665@oksana.dev.rtsoft.ru \
--to=cbouatmailru@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=grant.likely@secretlab.ca \
--cc=linux-mmc@vger.kernel.org \
--cc=linuxppc-dev@ozlabs.org \
--cc=tie-fei.zang@freescale.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.