All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mmc: core: fix wrong bit operation for SD card's au_size
@ 2012-02-21  4:31 Jaehoon Chung
  2012-02-21 10:34 ` Subhash Jadavani
  0 siblings, 1 reply; 3+ messages in thread
From: Jaehoon Chung @ 2012-02-21  4:31 UTC (permalink / raw)
  To: linux-mmc; +Cc: Chris Ball, Kyungmin Park, hyeonsu.kim

In SD spec, AU_SIZE and the value can be selected from 16KB.
But this code should be selected from 32KB.
I think right that shift (au + 3) instead of (au + 4).

Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
CC: Hyeonsu Kim <hyeonsu.kim@samsung.com>
---
 drivers/mmc/core/sd.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/mmc/core/sd.c b/drivers/mmc/core/sd.c
index 5017f93..85c7b39 100644
--- a/drivers/mmc/core/sd.c
+++ b/drivers/mmc/core/sd.c
@@ -245,7 +245,7 @@ static int mmc_read_ssr(struct mmc_card *card)
 	 */
 	au = UNSTUFF_BITS(ssr, 428 - 384, 4);
 	if (au > 0 || au <= 9) {
-		card->ssr.au = 1 << (au + 4);
+		card->ssr.au = 1 << (au + 3);
 		es = UNSTUFF_BITS(ssr, 408 - 384, 16);
 		et = UNSTUFF_BITS(ssr, 402 - 384, 6);
 		eo = UNSTUFF_BITS(ssr, 400 - 384, 2);
-- 
1.7.4.1

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

* RE: [PATCH] mmc: core: fix wrong bit operation for SD card's au_size
  2012-02-21  4:31 [PATCH] mmc: core: fix wrong bit operation for SD card's au_size Jaehoon Chung
@ 2012-02-21 10:34 ` Subhash Jadavani
  2012-02-21 14:14   ` Jae hoon Chung
  0 siblings, 1 reply; 3+ messages in thread
From: Subhash Jadavani @ 2012-02-21 10:34 UTC (permalink / raw)
  To: 'Jaehoon Chung', 'linux-mmc'
  Cc: 'Chris Ball', 'Kyungmin Park', hyeonsu.kim



> -----Original Message-----
> From: linux-mmc-owner@vger.kernel.org [mailto:linux-mmc-
> owner@vger.kernel.org] On Behalf Of Jaehoon Chung
> Sent: Tuesday, February 21, 2012 10:02 AM
> To: linux-mmc
> Cc: Chris Ball; Kyungmin Park; hyeonsu.kim@samsung.com
> Subject: [PATCH] mmc: core: fix wrong bit operation for SD card's au_size
> 
> In SD spec, AU_SIZE and the value can be selected from 16KB.
> But this code should be selected from 32KB.
> I think right that shift (au + 3) instead of (au + 4).
> 
> Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
> CC: Hyeonsu Kim <hyeonsu.kim@samsung.com>
> ---
>  drivers/mmc/core/sd.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/mmc/core/sd.c b/drivers/mmc/core/sd.c index
> 5017f93..85c7b39 100644
> --- a/drivers/mmc/core/sd.c
> +++ b/drivers/mmc/core/sd.c
> @@ -245,7 +245,7 @@ static int mmc_read_ssr(struct mmc_card *card)
>  	 */
>  	au = UNSTUFF_BITS(ssr, 428 - 384, 4);
>  	if (au > 0 || au <= 9) {
> -		card->ssr.au = 1 << (au + 4);
> +		card->ssr.au = 1 << (au + 3);

(au+4) is correct only. Look at the definition of "card->ssr.au"
("include/linux/mmc/card.h"), au is in terms of sectors.
		struct sd_ssr {
		        unsigned int            au;                     /*
In sectors */

Now let's take the example of "AU_SIZE" = 1 then (1 << (au+4)) would be 32.
Now as "card->sss.au" is in term of sectors, 32 sectors means 16KB (assuming
512 byte sector size).

Regards,
Subhash

>  		es = UNSTUFF_BITS(ssr, 408 - 384, 16);
>  		et = UNSTUFF_BITS(ssr, 402 - 384, 6);
>  		eo = UNSTUFF_BITS(ssr, 400 - 384, 2);
> --
> 1.7.4.1
> --
> 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


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

* Re: [PATCH] mmc: core: fix wrong bit operation for SD card's au_size
  2012-02-21 10:34 ` Subhash Jadavani
@ 2012-02-21 14:14   ` Jae hoon Chung
  0 siblings, 0 replies; 3+ messages in thread
From: Jae hoon Chung @ 2012-02-21 14:14 UTC (permalink / raw)
  To: Subhash Jadavani
  Cc: Jaehoon Chung, linux-mmc, Chris Ball, Kyungmin Park, hyeonsu.kim

Hi Subhash.

Right..sorry..my misunderstanding.
Thank you for your explanation.

Best Regards,
Jaehoon Chung

2012/2/21 Subhash Jadavani <subhashj@codeaurora.org>:
>
>
>> -----Original Message-----
>> From: linux-mmc-owner@vger.kernel.org [mailto:linux-mmc-
>> owner@vger.kernel.org] On Behalf Of Jaehoon Chung
>> Sent: Tuesday, February 21, 2012 10:02 AM
>> To: linux-mmc
>> Cc: Chris Ball; Kyungmin Park; hyeonsu.kim@samsung.com
>> Subject: [PATCH] mmc: core: fix wrong bit operation for SD card's au_size
>>
>> In SD spec, AU_SIZE and the value can be selected from 16KB.
>> But this code should be selected from 32KB.
>> I think right that shift (au + 3) instead of (au + 4).
>>
>> Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
>> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
>> CC: Hyeonsu Kim <hyeonsu.kim@samsung.com>
>> ---
>>  drivers/mmc/core/sd.c |    2 +-
>>  1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/drivers/mmc/core/sd.c b/drivers/mmc/core/sd.c index
>> 5017f93..85c7b39 100644
>> --- a/drivers/mmc/core/sd.c
>> +++ b/drivers/mmc/core/sd.c
>> @@ -245,7 +245,7 @@ static int mmc_read_ssr(struct mmc_card *card)
>>        */
>>       au = UNSTUFF_BITS(ssr, 428 - 384, 4);
>>       if (au > 0 || au <= 9) {
>> -             card->ssr.au = 1 << (au + 4);
>> +             card->ssr.au = 1 << (au + 3);
>
> (au+4) is correct only. Look at the definition of "card->ssr.au"
> ("include/linux/mmc/card.h"), au is in terms of sectors.
>                struct sd_ssr {
>                        unsigned int            au;                     /*
> In sectors */
>
> Now let's take the example of "AU_SIZE" = 1 then (1 << (au+4)) would be 32.
> Now as "card->sss.au" is in term of sectors, 32 sectors means 16KB (assuming
> 512 byte sector size).
>
> Regards,
> Subhash
>
>>               es = UNSTUFF_BITS(ssr, 408 - 384, 16);
>>               et = UNSTUFF_BITS(ssr, 402 - 384, 6);
>>               eo = UNSTUFF_BITS(ssr, 400 - 384, 2);
>> --
>> 1.7.4.1
>> --
>> 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
>
> --
> 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

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

end of thread, other threads:[~2012-02-21 14:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-02-21  4:31 [PATCH] mmc: core: fix wrong bit operation for SD card's au_size Jaehoon Chung
2012-02-21 10:34 ` Subhash Jadavani
2012-02-21 14:14   ` Jae hoon Chung

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.