From: "Subhash Jadavani" <subhashj@codeaurora.org>
To: "'Nath, Arindam'" <Arindam.Nath@amd.com>, linux-mmc@vger.kernel.org
Cc: 'Chris Ball' <cjb@laptop.org>,
'Philip Rakity' <prakity@marvell.com>,
'zhangfei gao' <zhangfei.gao@gmail.com>
Subject: RE: Issue with non-UHS-I SD3.0 cards
Date: Mon, 8 Aug 2011 11:50:58 +0530 [thread overview]
Message-ID: <000001cc5593$5910d2d0$0b327870$@org> (raw)
In-Reply-To: <6C03668EAF45B747AF947A1603D1B3000197DD104C@SAUSEXMBP01.amd.com>
Hi Arindam,
> -----Original Message-----
> From: linux-mmc-owner@vger.kernel.org [mailto:linux-mmc-
> owner@vger.kernel.org] On Behalf Of Nath, Arindam
> Sent: Saturday, August 06, 2011 12:27 AM
> To: Subhash Jadavani; linux-mmc@vger.kernel.org
> Cc: 'Chris Ball'; 'Philip Rakity'; 'zhangfei gao'
> Subject: RE: Issue with non-UHS-I SD3.0 cards
>
>
>
> > -----Original Message-----
> > From: Nath, Arindam
> > Sent: Saturday, August 06, 2011 12:15 AM
> > To: 'Subhash Jadavani'; linux-mmc@vger.kernel.org
> > Cc: 'Chris Ball'; 'Philip Rakity'; 'zhangfei gao'
> > Subject: RE: Issue with non-UHS-I SD3.0 cards
> >
> > Hi Subhash,
> >
> >
> > > -----Original Message-----
> > > From: Subhash Jadavani [mailto:subhashj@codeaurora.org]
> > > Sent: Friday, August 05, 2011 7:01 PM
> > > To: linux-mmc@vger.kernel.org
> > > Cc: Nath, Arindam; 'Chris Ball'; 'Philip Rakity'; 'zhangfei gao'
> > > Subject: Issue with non-UHS-I SD3.0 cards
> > >
> > > Hi,
> > >
> > > I am seeing the issue where "SanDisk Extreme SDHC 8GB Class 10
> card"
> > is
> > > running in "Default Speed" mode even though it supports "High
> Speed"
> > > mode.
> > > After analysis, I found that this card is advertising itself as
> SD3.0
> > > card
> > > (with SD_SPEC=2 and SD_SPEC3=1 in SCR). But current mmc core later
> > > initialization sequence for SD3.0 cards is such that these non-UHS-
> I
> > > SD3.0
> > > cards runs in Default Speed mode @25MHz.
> > >
> > > Here is Essential conditions to indicate Version 3.00 Card (from
> > SD3.01
> > > spec)
> > > (SD_SPEC=2 and SD_SPEC3=1) :
> > > (1) The card shall support CMD6
> > > (2) The card shall support CMD8
> > > (3) The card shall support CMD42
> > > (4) User area capacity shall be up to 2GB (SDSC) or 32GB (SDHC)
> > > User area capacity shall be more than or equal to 32GB and
> > > up to 2TB (SDXC)
> > > (5) Speed Class shall be supported (SDHC or SDXC)
> >
> > I went through the particular section of the spec again, and IMO, the
> > essential conditions are for the manufacturer of the card to
> advertise
> > his card as SD3.0 card or otherwise. From software point of view, the
> > SD_SPEC=2 _and_ SD_SPEC3=1 will indicate a SD3.0 card.
>
> I misread your comment, so please ignore what you mentioned above. So
> if I understand correctly, in your case *sd_spec3* is set for the card,
> even though it is a non UHS-I card. In that case, what you tried in
> your patch looks fine, except that I would suggest to move it inside
> the
>
> if (card->scr.sda_spec3) {
> ...
> }
>
> condition.
>
You mean moving the " card->sw_caps.hs_max_dtr = 50000000;" under if
(card->scr.sda_spec3) condition and still retaining the else condition for "
if (card->scr.sda_spec3) ".
Something like this:
if (card->scr.sda_spec3) {
if (status[13] & 0x02)
card->sw_caps.hs_max_dtr = 50000000;
...
...
} else {
if (status[13] & 0x02)
card->sw_caps.hs_max_dtr = 50000000;
}
I thought it's duplication of code as both if & else condition is executing
the same code so thought of putting it outside of if, else.
I am even ok with putting it inside "if (card->scr.sda_spec3)", if you think
it's better.
Regards,
Subhash
> >
> > Thanks,
> > Arindam
> >
> > >
> > >
> > > So even if SD card doesn't support any of the newly defined UHS-I
> bus
> > > speed
> > > mode, it can advertise itself as SD3.0 cards as long as it supports
> > all
> > > the
> > > essential conditions of SD3.0 cards. Given this, these type of
> cards
> > > should
> > > at least run in High Speed mode @50MHZ if it supports HS.
> > >
> > > Here are the changes you have to do to make non-UHS-I SD3.0 cards
> run
> > > in
> > > High Speed Mode @50MHz. Do let me know if looks fine or not, so I
> can
> > > post
> > > the formal patch.
> > >
> > > ---
> > > drivers/mmc/core/sd.c | 6 +++---
> > > 1 files changed, 3 insertions(+), 3 deletions(-)
> > >
> > > diff --git a/drivers/mmc/core/sd.c b/drivers/mmc/core/sd.c
> > > index 907662a..3fab676 100644
> > > --- a/drivers/mmc/core/sd.c
> > > +++ b/drivers/mmc/core/sd.c
> > > @@ -305,6 +305,9 @@ static int mmc_read_switch(struct mmc_card
> *card)
> > > goto out;
> > > }
> > >
> > > + if (status[13] & 0x02)
> > > + card->sw_caps.hs_max_dtr = 50000000;
> > > +
> > > if (card->scr.sda_spec3) {
> > > card->sw_caps.sd3_bus_mode = status[13];
> > >
> > > @@ -347,9 +350,6 @@ static int mmc_read_switch(struct mmc_card
> *card)
> > > }
> > >
> > > card->sw_caps.sd3_curr_limit = status[7];
> > > - } else {
> > > - if (status[13] & 0x02)
> > > - card->sw_caps.hs_max_dtr = 50000000;
> > > }
> > >
> > > out:
> > > --
> > >
> > >
> > > Regards,
> > > Subhash
> > >
> > >
>
>
> --
> 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:[~2011-08-08 6:21 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-01 11:58 [PATCH] mmc: sd: UHS-I bus speed should be set last in UHS initialization Subhash Jadavani
2011-08-01 20:09 ` Chris Ball
2011-08-02 7:08 ` Nath, Arindam
2011-08-02 9:12 ` Subhash Jadavani
2011-08-02 9:51 ` Nath, Arindam
2011-08-02 12:40 ` Subhash Jadavani
2011-08-05 13:30 ` Issue with non-UHS-I SD3.0 cards Subhash Jadavani
2011-08-05 18:44 ` Nath, Arindam
2011-08-05 18:57 ` Nath, Arindam
2011-08-08 6:20 ` Subhash Jadavani [this message]
2011-08-08 6:42 ` Nath, Arindam
2011-08-05 19:08 ` Nath, Arindam
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='000001cc5593$5910d2d0$0b327870$@org' \
--to=subhashj@codeaurora.org \
--cc=Arindam.Nath@amd.com \
--cc=cjb@laptop.org \
--cc=linux-mmc@vger.kernel.org \
--cc=prakity@marvell.com \
--cc=zhangfei.gao@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox