diff mbox

max_discard anomaly on certain Sandisk eMMC

Message ID 52AF8A30.9050700@wwwdotorg.org
State Not Applicable, archived
Headers show

Commit Message

Stephen Warren Dec. 16, 2013, 11:18 p.m. UTC
On 12/13/2013 03:43 PM, Stephen Warren wrote:
> On one of my eMMC devices, I see the following results from calling
> mmc_do_calc_max_discard() with various parameters:
> 
> [    3.057263] MMC_DISCARD_ARG max_discard 1
> [    3.057266] MMC_ERASE_ARG   max_discard 4096
> [    3.057267] MMC_TRIM_ARG    max_discard 1
> 
> This causes mmc_calc_max_discard() to return 1, which makes the discard
> IOCTL extremely slow.

Further investigation shows that if I make a few hacks that essentially
revert e056a1b5b67b "mmc: queue: let host controllers specify maximum
discard timeout":

 }

I end up with:

$ cat /sys/.../block/mmcblk1/queue# cat discard_granularity
2097152
$ cat /sys/.../block/mmcblk1/queue# cat discard_max_bytes
2199023255040
$ cat /sys/.../block/mmcblk1/queue# cat discard_zeroes_data
1

With those values, mke2fs is fast, and I validated that "blkdiscard"
works; I filled a large partition with /dev/urandom, executed
"blkdiscard" on the 4M at the start, and saw zeroes when reading the
discarded part back.

This implies that the issue is simply the operation of
mmc_calc_max_discard(), rather than the eMMC device mis-reporting its
discard abilities, doesn't it?
--
To unsubscribe from this list: send the line "unsubscribe linux-tegra" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Adrian Hunter Dec. 17, 2013, 8:17 a.m. UTC | #1
On 17/12/13 01:18, Stephen Warren wrote:
> On 12/13/2013 03:43 PM, Stephen Warren wrote:
>> On one of my eMMC devices, I see the following results from calling
>> mmc_do_calc_max_discard() with various parameters:
>>
>> [    3.057263] MMC_DISCARD_ARG max_discard 1
>> [    3.057266] MMC_ERASE_ARG   max_discard 4096
>> [    3.057267] MMC_TRIM_ARG    max_discard 1
>>
>> This causes mmc_calc_max_discard() to return 1, which makes the discard
>> IOCTL extremely slow.
> 
> Further investigation shows that if I make a few hacks that essentially
> revert e056a1b5b67b "mmc: queue: let host controllers specify maximum
> discard timeout":
> 
> diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c
> index 357bbc54fe4b..e66af930d0e3 100644
> --- a/drivers/mmc/card/queue.c
> +++ b/drivers/mmc/card/queue.c
> @@ -167,13 +167,15 @@ static void mmc_queue_setup_discard(struct
> request_queue *q,
>  		return;
> 
>  	queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q);
> -	q->limits.max_discard_sectors = max_discard;
> +	q->limits.max_discard_sectors = UINT_MAX;
>  	if (card->erased_byte == 0 && !mmc_can_discard(card))
>  		q->limits.discard_zeroes_data = 1;
>  	q->limits.discard_granularity = card->pref_erase << 9;
>  	/* granularity must not be greater than max. discard */
> +#if 0
>  	if (card->pref_erase > max_discard)
>  		q->limits.discard_granularity = 0;
> +#endif
>  	if (mmc_can_secure_erase_trim(card))
>  		queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, q);
>  }
> 
> I end up with:
> 
> $ cat /sys/.../block/mmcblk1/queue# cat discard_granularity
> 2097152
> $ cat /sys/.../block/mmcblk1/queue# cat discard_max_bytes
> 2199023255040
> $ cat /sys/.../block/mmcblk1/queue# cat discard_zeroes_data
> 1
> 
> With those values, mke2fs is fast, and I validated that "blkdiscard"
> works; I filled a large partition with /dev/urandom, executed
> "blkdiscard" on the 4M at the start, and saw zeroes when reading the
> discarded part back.
> 
> This implies that the issue is simply the operation of
> mmc_calc_max_discard(), rather than the eMMC device mis-reporting its
> discard abilities, doesn't it?

No.

The underlying problem is a combination of:
	a) JEDEC specified very large timeouts for erase operations e.g. can be
minutes for large erases
	b) SDHCI controllers have been implemented with high frequency timeout
clocks which limit the maximum timeout to a few seconds
	c) It is not possible to disable the timeout on SDHCI

What a) means is that you can get away with much larger erases than you can
specify the timeout for - which is what you have discovered.

To understand the timeouts, you should manually do the calculations.

Also note, that using HC Erase Size may help (MMC_CAP2_HC_ERASE_SZ), but
beware of the partitioning implications of changing that.

The best solution is to change the hardware to use the lowest possible
frequency timeout clock e.g. a 1KHz timeout clock could support timeouts of
up to 36 hours.

--
To unsubscribe from this list: send the line "unsubscribe linux-tegra" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Dong Aisheng Dec. 17, 2013, 9:40 a.m. UTC | #2
On Tue, Dec 17, 2013 at 4:17 PM, Adrian Hunter <adrian.hunter@intel.com> wrote:
> On 17/12/13 01:18, Stephen Warren wrote:
>> On 12/13/2013 03:43 PM, Stephen Warren wrote:
>>> On one of my eMMC devices, I see the following results from calling
>>> mmc_do_calc_max_discard() with various parameters:
>>>
>>> [    3.057263] MMC_DISCARD_ARG max_discard 1
>>> [    3.057266] MMC_ERASE_ARG   max_discard 4096
>>> [    3.057267] MMC_TRIM_ARG    max_discard 1
>>>
>>> This causes mmc_calc_max_discard() to return 1, which makes the discard
>>> IOCTL extremely slow.
>>
>> Further investigation shows that if I make a few hacks that essentially
>> revert e056a1b5b67b "mmc: queue: let host controllers specify maximum
>> discard timeout":
>>
>> diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c
>> index 357bbc54fe4b..e66af930d0e3 100644
>> --- a/drivers/mmc/card/queue.c
>> +++ b/drivers/mmc/card/queue.c
>> @@ -167,13 +167,15 @@ static void mmc_queue_setup_discard(struct
>> request_queue *q,
>>               return;
>>
>>       queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q);
>> -     q->limits.max_discard_sectors = max_discard;
>> +     q->limits.max_discard_sectors = UINT_MAX;
>>       if (card->erased_byte == 0 && !mmc_can_discard(card))
>>               q->limits.discard_zeroes_data = 1;
>>       q->limits.discard_granularity = card->pref_erase << 9;
>>       /* granularity must not be greater than max. discard */
>> +#if 0
>>       if (card->pref_erase > max_discard)
>>               q->limits.discard_granularity = 0;
>> +#endif
>>       if (mmc_can_secure_erase_trim(card))
>>               queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, q);
>>  }
>>
>> I end up with:
>>
>> $ cat /sys/.../block/mmcblk1/queue# cat discard_granularity
>> 2097152
>> $ cat /sys/.../block/mmcblk1/queue# cat discard_max_bytes
>> 2199023255040
>> $ cat /sys/.../block/mmcblk1/queue# cat discard_zeroes_data
>> 1
>>
>> With those values, mke2fs is fast, and I validated that "blkdiscard"
>> works; I filled a large partition with /dev/urandom, executed
>> "blkdiscard" on the 4M at the start, and saw zeroes when reading the
>> discarded part back.
>>
>> This implies that the issue is simply the operation of
>> mmc_calc_max_discard(), rather than the eMMC device mis-reporting its
>> discard abilities, doesn't it?
>
> No.
>
> The underlying problem is a combination of:
>         a) JEDEC specified very large timeouts for erase operations e.g. can be
> minutes for large erases
>         b) SDHCI controllers have been implemented with high frequency timeout
> clocks which limit the maximum timeout to a few seconds

Right, especially for controllers using SDCLK as timeout clock.
I'm a bit suspect the timeout supported by host whether is designed
for erase operation
since they have huge gap.
For IMX, when running on 198Mhz for a SD3.0 cards, the max_discard_to is 1355ms.
However, i have one Toshiba SDHC U1 card which ERASE_OFFSET is 2s.
That means our host has no chance to support discard for such card.

Now, i'm think for those host controller with limited timeout time, if we should
use CMD13 to polling the status instead of using HW timeout machanism.
And actuall the mmc core already has some base code to support it.
The timeout is 10 seconds.

See mmc_do_erase function and
/* If the device is not responding */
#define MMC_CORE_TIMEOUT_MS     (10 * 60 * 1000) /* 10 minute timeout */

Regards
Dong Aisheng

>         c) It is not possible to disable the timeout on SDHCI
>
> What a) means is that you can get away with much larger erases than you can
> specify the timeout for - which is what you have discovered.
>
> To understand the timeouts, you should manually do the calculations.
>
> Also note, that using HC Erase Size may help (MMC_CAP2_HC_ERASE_SZ), but
> beware of the partitioning implications of changing that.
>
> The best solution is to change the hardware to use the lowest possible
> frequency timeout clock e.g. a 1KHz timeout clock could support timeouts of
> up to 36 hours.
>
> --
> 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-tegra" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Vladimir Zapolskiy Dec. 17, 2013, 9:45 a.m. UTC | #3
On 12/17/13 10:40, Dong Aisheng wrote:
> On Tue, Dec 17, 2013 at 4:17 PM, Adrian Hunter<adrian.hunter@intel.com>  wrote:
>> On 17/12/13 01:18, Stephen Warren wrote:
>>> On 12/13/2013 03:43 PM, Stephen Warren wrote:
>>>> On one of my eMMC devices, I see the following results from calling
>>>> mmc_do_calc_max_discard() with various parameters:
>>>>
>>>> [    3.057263] MMC_DISCARD_ARG max_discard 1
>>>> [    3.057266] MMC_ERASE_ARG   max_discard 4096
>>>> [    3.057267] MMC_TRIM_ARG    max_discard 1
>>>>
>>>> This causes mmc_calc_max_discard() to return 1, which makes the discard
>>>> IOCTL extremely slow.
>>>
>>> Further investigation shows that if I make a few hacks that essentially
>>> revert e056a1b5b67b "mmc: queue: let host controllers specify maximum
>>> discard timeout":
>>>
>>> diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c
>>> index 357bbc54fe4b..e66af930d0e3 100644
>>> --- a/drivers/mmc/card/queue.c
>>> +++ b/drivers/mmc/card/queue.c
>>> @@ -167,13 +167,15 @@ static void mmc_queue_setup_discard(struct
>>> request_queue *q,
>>>                return;
>>>
>>>        queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q);
>>> -     q->limits.max_discard_sectors = max_discard;
>>> +     q->limits.max_discard_sectors = UINT_MAX;
>>>        if (card->erased_byte == 0&&  !mmc_can_discard(card))
>>>                q->limits.discard_zeroes_data = 1;
>>>        q->limits.discard_granularity = card->pref_erase<<  9;
>>>        /* granularity must not be greater than max. discard */
>>> +#if 0
>>>        if (card->pref_erase>  max_discard)
>>>                q->limits.discard_granularity = 0;
>>> +#endif
>>>        if (mmc_can_secure_erase_trim(card))
>>>                queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, q);
>>>   }
>>>
>>> I end up with:
>>>
>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_granularity
>>> 2097152
>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_max_bytes
>>> 2199023255040
>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_zeroes_data
>>> 1
>>>
>>> With those values, mke2fs is fast, and I validated that "blkdiscard"
>>> works; I filled a large partition with /dev/urandom, executed
>>> "blkdiscard" on the 4M at the start, and saw zeroes when reading the
>>> discarded part back.
>>>
>>> This implies that the issue is simply the operation of
>>> mmc_calc_max_discard(), rather than the eMMC device mis-reporting its
>>> discard abilities, doesn't it?
>>
>> No.
>>
>> The underlying problem is a combination of:
>>          a) JEDEC specified very large timeouts for erase operations e.g. can be
>> minutes for large erases
>>          b) SDHCI controllers have been implemented with high frequency timeout
>> clocks which limit the maximum timeout to a few seconds
>
> Right, especially for controllers using SDCLK as timeout clock.
> I'm a bit suspect the timeout supported by host whether is designed
> for erase operation
> since they have huge gap.
> For IMX, when running on 198Mhz for a SD3.0 cards, the max_discard_to is 1355ms.
> However, i have one Toshiba SDHC U1 card which ERASE_OFFSET is 2s.
> That means our host has no chance to support discard for such card.
>
> Now, i'm think for those host controller with limited timeout time, if we should
> use CMD13 to polling the status instead of using HW timeout machanism.
> And actuall the mmc core already has some base code to support it.
> The timeout is 10 seconds.

That's my point also. I presume JEDEC specifies maximum safe timeout for 
erase
operations, but since it is so huge (if properly calculated it may reach 
hours
for multiple erase groups) and erase operations are so fast, I don't think
we should care much of data line timeout on controller's side during
erase/trim/discard.

> See mmc_do_erase function and
> /* If the device is not responding */
> #define MMC_CORE_TIMEOUT_MS     (10 * 60 * 1000) /* 10 minute timeout */
>
> Regards
> Dong Aisheng
>
>>          c) It is not possible to disable the timeout on SDHCI
>>
>> What a) means is that you can get away with much larger erases than you can
>> specify the timeout for - which is what you have discovered.
>>
>> To understand the timeouts, you should manually do the calculations.
>>
>> Also note, that using HC Erase Size may help (MMC_CAP2_HC_ERASE_SZ), but
>> beware of the partitioning implications of changing that.
>>
>> The best solution is to change the hardware to use the lowest possible
>> frequency timeout clock e.g. a 1KHz timeout clock could support timeouts of
>> up to 36 hours.
>>
>> --
>> 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
--
To unsubscribe from this list: send the line "unsubscribe linux-tegra" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Ulf Hansson Dec. 17, 2013, 10:04 a.m. UTC | #4
On 17 December 2013 09:17, Adrian Hunter <adrian.hunter@intel.com> wrote:
> On 17/12/13 01:18, Stephen Warren wrote:
>> On 12/13/2013 03:43 PM, Stephen Warren wrote:
>>> On one of my eMMC devices, I see the following results from calling
>>> mmc_do_calc_max_discard() with various parameters:
>>>
>>> [    3.057263] MMC_DISCARD_ARG max_discard 1
>>> [    3.057266] MMC_ERASE_ARG   max_discard 4096
>>> [    3.057267] MMC_TRIM_ARG    max_discard 1
>>>
>>> This causes mmc_calc_max_discard() to return 1, which makes the discard
>>> IOCTL extremely slow.
>>
>> Further investigation shows that if I make a few hacks that essentially
>> revert e056a1b5b67b "mmc: queue: let host controllers specify maximum
>> discard timeout":
>>
>> diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c
>> index 357bbc54fe4b..e66af930d0e3 100644
>> --- a/drivers/mmc/card/queue.c
>> +++ b/drivers/mmc/card/queue.c
>> @@ -167,13 +167,15 @@ static void mmc_queue_setup_discard(struct
>> request_queue *q,
>>               return;
>>
>>       queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q);
>> -     q->limits.max_discard_sectors = max_discard;
>> +     q->limits.max_discard_sectors = UINT_MAX;
>>       if (card->erased_byte == 0 && !mmc_can_discard(card))
>>               q->limits.discard_zeroes_data = 1;
>>       q->limits.discard_granularity = card->pref_erase << 9;
>>       /* granularity must not be greater than max. discard */
>> +#if 0
>>       if (card->pref_erase > max_discard)
>>               q->limits.discard_granularity = 0;
>> +#endif
>>       if (mmc_can_secure_erase_trim(card))
>>               queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, q);
>>  }
>>
>> I end up with:
>>
>> $ cat /sys/.../block/mmcblk1/queue# cat discard_granularity
>> 2097152
>> $ cat /sys/.../block/mmcblk1/queue# cat discard_max_bytes
>> 2199023255040
>> $ cat /sys/.../block/mmcblk1/queue# cat discard_zeroes_data
>> 1
>>
>> With those values, mke2fs is fast, and I validated that "blkdiscard"
>> works; I filled a large partition with /dev/urandom, executed
>> "blkdiscard" on the 4M at the start, and saw zeroes when reading the
>> discarded part back.
>>
>> This implies that the issue is simply the operation of
>> mmc_calc_max_discard(), rather than the eMMC device mis-reporting its
>> discard abilities, doesn't it?
>
> No.
>
> The underlying problem is a combination of:
>         a) JEDEC specified very large timeouts for erase operations e.g. can be
> minutes for large erases
>         b) SDHCI controllers have been implemented with high frequency timeout
> clocks which limit the maximum timeout to a few seconds
>         c) It is not possible to disable the timeout on SDHCI
>
> What a) means is that you can get away with much larger erases than you can
> specify the timeout for - which is what you have discovered.
>
> To understand the timeouts, you should manually do the calculations.
>
> Also note, that using HC Erase Size may help (MMC_CAP2_HC_ERASE_SZ), but
> beware of the partitioning implications of changing that.
>
> The best solution is to change the hardware to use the lowest possible
> frequency timeout clock e.g. a 1KHz timeout clock could support timeouts of
> up to 36 hours.

Don't know the details about the limitations for SDHCI, but I guess
similar exists for other controllers as well.

I do get the impression that we have got a problem in the mmc
core/block layer for how erase/trim/discard timeouts are being
handled.

I don't think the mmc hw-controller should be waiting for the R1B
response from the CMD38 as long as this "timeout" we are discussing
here. According to the spec, at least how I interpret it, the card
should respond rather quickly to CMD38, then it will assert the DAT0
line to indicate busy.

The total time the card is allowed to stay busy, that is what the
timeout specifies. We may either use a mmc hw-controller busy
detection mechanism or send CMD13 to poll for status. The latter is
somewhat already being handled in mmc_do_erase(), but we are using
"MMC_CORE_TIMEOUT_MS" instead of the correct timeout.

Kind regards
Ulf Hansson

>
> --
> 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-tegra" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Dong Aisheng Dec. 17, 2013, 11:05 a.m. UTC | #5
On Tue, Dec 17, 2013 at 6:04 PM, Ulf Hansson <ulf.hansson@linaro.org> wrote:
> On 17 December 2013 09:17, Adrian Hunter <adrian.hunter@intel.com> wrote:
>> On 17/12/13 01:18, Stephen Warren wrote:
>>> On 12/13/2013 03:43 PM, Stephen Warren wrote:
>>>> On one of my eMMC devices, I see the following results from calling
>>>> mmc_do_calc_max_discard() with various parameters:
>>>>
>>>> [    3.057263] MMC_DISCARD_ARG max_discard 1
>>>> [    3.057266] MMC_ERASE_ARG   max_discard 4096
>>>> [    3.057267] MMC_TRIM_ARG    max_discard 1
>>>>
>>>> This causes mmc_calc_max_discard() to return 1, which makes the discard
>>>> IOCTL extremely slow.
>>>
>>> Further investigation shows that if I make a few hacks that essentially
>>> revert e056a1b5b67b "mmc: queue: let host controllers specify maximum
>>> discard timeout":
>>>
>>> diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c
>>> index 357bbc54fe4b..e66af930d0e3 100644
>>> --- a/drivers/mmc/card/queue.c
>>> +++ b/drivers/mmc/card/queue.c
>>> @@ -167,13 +167,15 @@ static void mmc_queue_setup_discard(struct
>>> request_queue *q,
>>>               return;
>>>
>>>       queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q);
>>> -     q->limits.max_discard_sectors = max_discard;
>>> +     q->limits.max_discard_sectors = UINT_MAX;
>>>       if (card->erased_byte == 0 && !mmc_can_discard(card))
>>>               q->limits.discard_zeroes_data = 1;
>>>       q->limits.discard_granularity = card->pref_erase << 9;
>>>       /* granularity must not be greater than max. discard */
>>> +#if 0
>>>       if (card->pref_erase > max_discard)
>>>               q->limits.discard_granularity = 0;
>>> +#endif
>>>       if (mmc_can_secure_erase_trim(card))
>>>               queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, q);
>>>  }
>>>
>>> I end up with:
>>>
>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_granularity
>>> 2097152
>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_max_bytes
>>> 2199023255040
>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_zeroes_data
>>> 1
>>>
>>> With those values, mke2fs is fast, and I validated that "blkdiscard"
>>> works; I filled a large partition with /dev/urandom, executed
>>> "blkdiscard" on the 4M at the start, and saw zeroes when reading the
>>> discarded part back.
>>>
>>> This implies that the issue is simply the operation of
>>> mmc_calc_max_discard(), rather than the eMMC device mis-reporting its
>>> discard abilities, doesn't it?
>>
>> No.
>>
>> The underlying problem is a combination of:
>>         a) JEDEC specified very large timeouts for erase operations e.g. can be
>> minutes for large erases
>>         b) SDHCI controllers have been implemented with high frequency timeout
>> clocks which limit the maximum timeout to a few seconds
>>         c) It is not possible to disable the timeout on SDHCI
>>
>> What a) means is that you can get away with much larger erases than you can
>> specify the timeout for - which is what you have discovered.
>>
>> To understand the timeouts, you should manually do the calculations.
>>
>> Also note, that using HC Erase Size may help (MMC_CAP2_HC_ERASE_SZ), but
>> beware of the partitioning implications of changing that.
>>
>> The best solution is to change the hardware to use the lowest possible
>> frequency timeout clock e.g. a 1KHz timeout clock could support timeouts of
>> up to 36 hours.
>
> Don't know the details about the limitations for SDHCI, but I guess
> similar exists for other controllers as well.
>
> I do get the impression that we have got a problem in the mmc
> core/block layer for how erase/trim/discard timeouts are being
> handled.
>
> I don't think the mmc hw-controller should be waiting for the R1B
> response from the CMD38 as long as this "timeout" we are discussing
> here. According to the spec, at least how I interpret it, the card
> should respond rather quickly to CMD38, then it will assert the DAT0
> line to indicate busy.
>

For IMX, CMD38 responds very quick since it does not wait for TC interrupt
when DAT0 de-assertion due to IP limitation.

> The total time the card is allowed to stay busy, that is what the
> timeout specifies. We may either use a mmc hw-controller busy
> detection mechanism or send CMD13 to poll for status. The latter is
> somewhat already being handled in mmc_do_erase(), but we are using
> "MMC_CORE_TIMEOUT_MS" instead of the correct timeout.
>

Maybe one better way may be using polling for status if erase timeout
is bigger than
host capability, else still prefer to use hw timeout mechanism instead
to save CPU.
However, then we have two issues:
1) not waiting for R1B seems a bit violation with standard spec.
Also it increase complexity on handling the R1B of the same command
for two different
cases: using hw timeout or polling status for CMD38.

2) In current implementation, the data size to erase will not exceed
the max_discard_bytes
which is calculated based on max_discard_to of host.
Then how do we specify max_discard_to if want to use polling? UNIT_MAX?
Will it be too long to affect other activities in the same system?

Regards
Dong Aisheng

> Kind regards
> Ulf Hansson
>
>>
>> --
>> 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
--
To unsubscribe from this list: send the line "unsubscribe linux-tegra" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Adrian Hunter Dec. 17, 2013, 11:20 a.m. UTC | #6
On 17/12/13 12:04, Ulf Hansson wrote:
> On 17 December 2013 09:17, Adrian Hunter <adrian.hunter@intel.com> wrote:
>> On 17/12/13 01:18, Stephen Warren wrote:
>>> On 12/13/2013 03:43 PM, Stephen Warren wrote:
>>>> On one of my eMMC devices, I see the following results from calling
>>>> mmc_do_calc_max_discard() with various parameters:
>>>>
>>>> [    3.057263] MMC_DISCARD_ARG max_discard 1
>>>> [    3.057266] MMC_ERASE_ARG   max_discard 4096
>>>> [    3.057267] MMC_TRIM_ARG    max_discard 1
>>>>
>>>> This causes mmc_calc_max_discard() to return 1, which makes the discard
>>>> IOCTL extremely slow.
>>>
>>> Further investigation shows that if I make a few hacks that essentially
>>> revert e056a1b5b67b "mmc: queue: let host controllers specify maximum
>>> discard timeout":
>>>
>>> diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c
>>> index 357bbc54fe4b..e66af930d0e3 100644
>>> --- a/drivers/mmc/card/queue.c
>>> +++ b/drivers/mmc/card/queue.c
>>> @@ -167,13 +167,15 @@ static void mmc_queue_setup_discard(struct
>>> request_queue *q,
>>>               return;
>>>
>>>       queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q);
>>> -     q->limits.max_discard_sectors = max_discard;
>>> +     q->limits.max_discard_sectors = UINT_MAX;
>>>       if (card->erased_byte == 0 && !mmc_can_discard(card))
>>>               q->limits.discard_zeroes_data = 1;
>>>       q->limits.discard_granularity = card->pref_erase << 9;
>>>       /* granularity must not be greater than max. discard */
>>> +#if 0
>>>       if (card->pref_erase > max_discard)
>>>               q->limits.discard_granularity = 0;
>>> +#endif
>>>       if (mmc_can_secure_erase_trim(card))
>>>               queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, q);
>>>  }
>>>
>>> I end up with:
>>>
>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_granularity
>>> 2097152
>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_max_bytes
>>> 2199023255040
>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_zeroes_data
>>> 1
>>>
>>> With those values, mke2fs is fast, and I validated that "blkdiscard"
>>> works; I filled a large partition with /dev/urandom, executed
>>> "blkdiscard" on the 4M at the start, and saw zeroes when reading the
>>> discarded part back.
>>>
>>> This implies that the issue is simply the operation of
>>> mmc_calc_max_discard(), rather than the eMMC device mis-reporting its
>>> discard abilities, doesn't it?
>>
>> No.
>>
>> The underlying problem is a combination of:
>>         a) JEDEC specified very large timeouts for erase operations e.g. can be
>> minutes for large erases
>>         b) SDHCI controllers have been implemented with high frequency timeout
>> clocks which limit the maximum timeout to a few seconds
>>         c) It is not possible to disable the timeout on SDHCI
>>
>> What a) means is that you can get away with much larger erases than you can
>> specify the timeout for - which is what you have discovered.
>>
>> To understand the timeouts, you should manually do the calculations.
>>
>> Also note, that using HC Erase Size may help (MMC_CAP2_HC_ERASE_SZ), but
>> beware of the partitioning implications of changing that.
>>
>> The best solution is to change the hardware to use the lowest possible
>> frequency timeout clock e.g. a 1KHz timeout clock could support timeouts of
>> up to 36 hours.
> 
> Don't know the details about the limitations for SDHCI, but I guess
> similar exists for other controllers as well.

Not necessarily.  For example omap_hsmmc just disables the timeout for erase
operations.

> 
> I do get the impression that we have got a problem in the mmc
> core/block layer for how erase/trim/discard timeouts are being
> handled.
> 
> I don't think the mmc hw-controller should be waiting for the R1B
> response from the CMD38 as long as this "timeout" we are discussing
> here. According to the spec, at least how I interpret it, the card
> should respond rather quickly to CMD38, then it will assert the DAT0
> line to indicate busy.
> 
> The total time the card is allowed to stay busy, that is what the
> timeout specifies. We may either use a mmc hw-controller busy
> detection mechanism or send CMD13 to poll for status. The latter is
> somewhat already being handled in mmc_do_erase(), but we are using
> "MMC_CORE_TIMEOUT_MS" instead of the correct timeout.
> 
> Kind regards
> Ulf Hansson
> 
>>
>> --
>> 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-tegra" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Ulf Hansson Dec. 17, 2013, 12:25 p.m. UTC | #7
On 17 December 2013 12:20, Adrian Hunter <adrian.hunter@intel.com> wrote:
> On 17/12/13 12:04, Ulf Hansson wrote:
>> On 17 December 2013 09:17, Adrian Hunter <adrian.hunter@intel.com> wrote:
>>> On 17/12/13 01:18, Stephen Warren wrote:
>>>> On 12/13/2013 03:43 PM, Stephen Warren wrote:
>>>>> On one of my eMMC devices, I see the following results from calling
>>>>> mmc_do_calc_max_discard() with various parameters:
>>>>>
>>>>> [    3.057263] MMC_DISCARD_ARG max_discard 1
>>>>> [    3.057266] MMC_ERASE_ARG   max_discard 4096
>>>>> [    3.057267] MMC_TRIM_ARG    max_discard 1
>>>>>
>>>>> This causes mmc_calc_max_discard() to return 1, which makes the discard
>>>>> IOCTL extremely slow.
>>>>
>>>> Further investigation shows that if I make a few hacks that essentially
>>>> revert e056a1b5b67b "mmc: queue: let host controllers specify maximum
>>>> discard timeout":
>>>>
>>>> diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c
>>>> index 357bbc54fe4b..e66af930d0e3 100644
>>>> --- a/drivers/mmc/card/queue.c
>>>> +++ b/drivers/mmc/card/queue.c
>>>> @@ -167,13 +167,15 @@ static void mmc_queue_setup_discard(struct
>>>> request_queue *q,
>>>>               return;
>>>>
>>>>       queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q);
>>>> -     q->limits.max_discard_sectors = max_discard;
>>>> +     q->limits.max_discard_sectors = UINT_MAX;
>>>>       if (card->erased_byte == 0 && !mmc_can_discard(card))
>>>>               q->limits.discard_zeroes_data = 1;
>>>>       q->limits.discard_granularity = card->pref_erase << 9;
>>>>       /* granularity must not be greater than max. discard */
>>>> +#if 0
>>>>       if (card->pref_erase > max_discard)
>>>>               q->limits.discard_granularity = 0;
>>>> +#endif
>>>>       if (mmc_can_secure_erase_trim(card))
>>>>               queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, q);
>>>>  }
>>>>
>>>> I end up with:
>>>>
>>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_granularity
>>>> 2097152
>>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_max_bytes
>>>> 2199023255040
>>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_zeroes_data
>>>> 1
>>>>
>>>> With those values, mke2fs is fast, and I validated that "blkdiscard"
>>>> works; I filled a large partition with /dev/urandom, executed
>>>> "blkdiscard" on the 4M at the start, and saw zeroes when reading the
>>>> discarded part back.
>>>>
>>>> This implies that the issue is simply the operation of
>>>> mmc_calc_max_discard(), rather than the eMMC device mis-reporting its
>>>> discard abilities, doesn't it?
>>>
>>> No.
>>>
>>> The underlying problem is a combination of:
>>>         a) JEDEC specified very large timeouts for erase operations e.g. can be
>>> minutes for large erases
>>>         b) SDHCI controllers have been implemented with high frequency timeout
>>> clocks which limit the maximum timeout to a few seconds
>>>         c) It is not possible to disable the timeout on SDHCI
>>>
>>> What a) means is that you can get away with much larger erases than you can
>>> specify the timeout for - which is what you have discovered.
>>>
>>> To understand the timeouts, you should manually do the calculations.
>>>
>>> Also note, that using HC Erase Size may help (MMC_CAP2_HC_ERASE_SZ), but
>>> beware of the partitioning implications of changing that.
>>>
>>> The best solution is to change the hardware to use the lowest possible
>>> frequency timeout clock e.g. a 1KHz timeout clock could support timeouts of
>>> up to 36 hours.
>>
>> Don't know the details about the limitations for SDHCI, but I guess
>> similar exists for other controllers as well.
>
> Not necessarily.  For example omap_hsmmc just disables the timeout for erase
> operations.
>

Interesting! :-) Actually, it is disabling the data time out and
keeping the command time out.

>>
>> I do get the impression that we have got a problem in the mmc
>> core/block layer for how erase/trim/discard timeouts are being
>> handled.
>>
>> I don't think the mmc hw-controller should be waiting for the R1B
>> response from the CMD38 as long as this "timeout" we are discussing
>> here. According to the spec, at least how I interpret it, the card
>> should respond rather quickly to CMD38, then it will assert the DAT0
>> line to indicate busy.
>>
>> The total time the card is allowed to stay busy, that is what the
>> timeout specifies. We may either use a mmc hw-controller busy
>> detection mechanism or send CMD13 to poll for status. The latter is
>> somewhat already being handled in mmc_do_erase(), but we are using
>> "MMC_CORE_TIMEOUT_MS" instead of the correct timeout.
>>
>> Kind regards
>> Ulf Hansson
>>
>>>
>>> --
>>> 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-tegra" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Ulf Hansson Dec. 17, 2013, 12:33 p.m. UTC | #8
On 17 December 2013 12:05, Dong Aisheng <dongas86@gmail.com> wrote:
> On Tue, Dec 17, 2013 at 6:04 PM, Ulf Hansson <ulf.hansson@linaro.org> wrote:
>> On 17 December 2013 09:17, Adrian Hunter <adrian.hunter@intel.com> wrote:
>>> On 17/12/13 01:18, Stephen Warren wrote:
>>>> On 12/13/2013 03:43 PM, Stephen Warren wrote:
>>>>> On one of my eMMC devices, I see the following results from calling
>>>>> mmc_do_calc_max_discard() with various parameters:
>>>>>
>>>>> [    3.057263] MMC_DISCARD_ARG max_discard 1
>>>>> [    3.057266] MMC_ERASE_ARG   max_discard 4096
>>>>> [    3.057267] MMC_TRIM_ARG    max_discard 1
>>>>>
>>>>> This causes mmc_calc_max_discard() to return 1, which makes the discard
>>>>> IOCTL extremely slow.
>>>>
>>>> Further investigation shows that if I make a few hacks that essentially
>>>> revert e056a1b5b67b "mmc: queue: let host controllers specify maximum
>>>> discard timeout":
>>>>
>>>> diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c
>>>> index 357bbc54fe4b..e66af930d0e3 100644
>>>> --- a/drivers/mmc/card/queue.c
>>>> +++ b/drivers/mmc/card/queue.c
>>>> @@ -167,13 +167,15 @@ static void mmc_queue_setup_discard(struct
>>>> request_queue *q,
>>>>               return;
>>>>
>>>>       queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q);
>>>> -     q->limits.max_discard_sectors = max_discard;
>>>> +     q->limits.max_discard_sectors = UINT_MAX;
>>>>       if (card->erased_byte == 0 && !mmc_can_discard(card))
>>>>               q->limits.discard_zeroes_data = 1;
>>>>       q->limits.discard_granularity = card->pref_erase << 9;
>>>>       /* granularity must not be greater than max. discard */
>>>> +#if 0
>>>>       if (card->pref_erase > max_discard)
>>>>               q->limits.discard_granularity = 0;
>>>> +#endif
>>>>       if (mmc_can_secure_erase_trim(card))
>>>>               queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, q);
>>>>  }
>>>>
>>>> I end up with:
>>>>
>>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_granularity
>>>> 2097152
>>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_max_bytes
>>>> 2199023255040
>>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_zeroes_data
>>>> 1
>>>>
>>>> With those values, mke2fs is fast, and I validated that "blkdiscard"
>>>> works; I filled a large partition with /dev/urandom, executed
>>>> "blkdiscard" on the 4M at the start, and saw zeroes when reading the
>>>> discarded part back.
>>>>
>>>> This implies that the issue is simply the operation of
>>>> mmc_calc_max_discard(), rather than the eMMC device mis-reporting its
>>>> discard abilities, doesn't it?
>>>
>>> No.
>>>
>>> The underlying problem is a combination of:
>>>         a) JEDEC specified very large timeouts for erase operations e.g. can be
>>> minutes for large erases
>>>         b) SDHCI controllers have been implemented with high frequency timeout
>>> clocks which limit the maximum timeout to a few seconds
>>>         c) It is not possible to disable the timeout on SDHCI
>>>
>>> What a) means is that you can get away with much larger erases than you can
>>> specify the timeout for - which is what you have discovered.
>>>
>>> To understand the timeouts, you should manually do the calculations.
>>>
>>> Also note, that using HC Erase Size may help (MMC_CAP2_HC_ERASE_SZ), but
>>> beware of the partitioning implications of changing that.
>>>
>>> The best solution is to change the hardware to use the lowest possible
>>> frequency timeout clock e.g. a 1KHz timeout clock could support timeouts of
>>> up to 36 hours.
>>
>> Don't know the details about the limitations for SDHCI, but I guess
>> similar exists for other controllers as well.
>>
>> I do get the impression that we have got a problem in the mmc
>> core/block layer for how erase/trim/discard timeouts are being
>> handled.
>>
>> I don't think the mmc hw-controller should be waiting for the R1B
>> response from the CMD38 as long as this "timeout" we are discussing
>> here. According to the spec, at least how I interpret it, the card
>> should respond rather quickly to CMD38, then it will assert the DAT0
>> line to indicate busy.
>>
>
> For IMX, CMD38 responds very quick since it does not wait for TC interrupt
> when DAT0 de-assertion due to IP limitation.
>
>> The total time the card is allowed to stay busy, that is what the
>> timeout specifies. We may either use a mmc hw-controller busy
>> detection mechanism or send CMD13 to poll for status. The latter is
>> somewhat already being handled in mmc_do_erase(), but we are using
>> "MMC_CORE_TIMEOUT_MS" instead of the correct timeout.
>>
>
> Maybe one better way may be using polling for status if erase timeout
> is bigger than
> host capability, else still prefer to use hw timeout mechanism instead
> to save CPU.

Nope, this wont work.

Just because we get the R1B response within some chosen timeout that
does not mean the card has completed it's operation.

We need to monitor if the card is signalling busy, after the R1B
response has been received to know. Thus polling with CMD13 will be
needed, no matter how.

Kind regards
Ulf Hansson

> However, then we have two issues:
> 1) not waiting for R1B seems a bit violation with standard spec.
> Also it increase complexity on handling the R1B of the same command
> for two different
> cases: using hw timeout or polling status for CMD38.
>
> 2) In current implementation, the data size to erase will not exceed
> the max_discard_bytes
> which is calculated based on max_discard_to of host.
> Then how do we specify max_discard_to if want to use polling? UNIT_MAX?
> Will it be too long to affect other activities in the same system?



>
> Regards
> Dong Aisheng
>
>> Kind regards
>> Ulf Hansson
>>
>>>
>>> --
>>> 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
--
To unsubscribe from this list: send the line "unsubscribe linux-tegra" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Ulf Hansson Dec. 17, 2013, 12:44 p.m. UTC | #9
On 17 December 2013 13:33, Ulf Hansson <ulf.hansson@linaro.org> wrote:
> On 17 December 2013 12:05, Dong Aisheng <dongas86@gmail.com> wrote:
>> On Tue, Dec 17, 2013 at 6:04 PM, Ulf Hansson <ulf.hansson@linaro.org> wrote:
>>> On 17 December 2013 09:17, Adrian Hunter <adrian.hunter@intel.com> wrote:
>>>> On 17/12/13 01:18, Stephen Warren wrote:
>>>>> On 12/13/2013 03:43 PM, Stephen Warren wrote:
>>>>>> On one of my eMMC devices, I see the following results from calling
>>>>>> mmc_do_calc_max_discard() with various parameters:
>>>>>>
>>>>>> [    3.057263] MMC_DISCARD_ARG max_discard 1
>>>>>> [    3.057266] MMC_ERASE_ARG   max_discard 4096
>>>>>> [    3.057267] MMC_TRIM_ARG    max_discard 1
>>>>>>
>>>>>> This causes mmc_calc_max_discard() to return 1, which makes the discard
>>>>>> IOCTL extremely slow.
>>>>>
>>>>> Further investigation shows that if I make a few hacks that essentially
>>>>> revert e056a1b5b67b "mmc: queue: let host controllers specify maximum
>>>>> discard timeout":
>>>>>
>>>>> diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c
>>>>> index 357bbc54fe4b..e66af930d0e3 100644
>>>>> --- a/drivers/mmc/card/queue.c
>>>>> +++ b/drivers/mmc/card/queue.c
>>>>> @@ -167,13 +167,15 @@ static void mmc_queue_setup_discard(struct
>>>>> request_queue *q,
>>>>>               return;
>>>>>
>>>>>       queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q);
>>>>> -     q->limits.max_discard_sectors = max_discard;
>>>>> +     q->limits.max_discard_sectors = UINT_MAX;
>>>>>       if (card->erased_byte == 0 && !mmc_can_discard(card))
>>>>>               q->limits.discard_zeroes_data = 1;
>>>>>       q->limits.discard_granularity = card->pref_erase << 9;
>>>>>       /* granularity must not be greater than max. discard */
>>>>> +#if 0
>>>>>       if (card->pref_erase > max_discard)
>>>>>               q->limits.discard_granularity = 0;
>>>>> +#endif
>>>>>       if (mmc_can_secure_erase_trim(card))
>>>>>               queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, q);
>>>>>  }
>>>>>
>>>>> I end up with:
>>>>>
>>>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_granularity
>>>>> 2097152
>>>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_max_bytes
>>>>> 2199023255040
>>>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_zeroes_data
>>>>> 1
>>>>>
>>>>> With those values, mke2fs is fast, and I validated that "blkdiscard"
>>>>> works; I filled a large partition with /dev/urandom, executed
>>>>> "blkdiscard" on the 4M at the start, and saw zeroes when reading the
>>>>> discarded part back.
>>>>>
>>>>> This implies that the issue is simply the operation of
>>>>> mmc_calc_max_discard(), rather than the eMMC device mis-reporting its
>>>>> discard abilities, doesn't it?
>>>>
>>>> No.
>>>>
>>>> The underlying problem is a combination of:
>>>>         a) JEDEC specified very large timeouts for erase operations e.g. can be
>>>> minutes for large erases
>>>>         b) SDHCI controllers have been implemented with high frequency timeout
>>>> clocks which limit the maximum timeout to a few seconds
>>>>         c) It is not possible to disable the timeout on SDHCI
>>>>
>>>> What a) means is that you can get away with much larger erases than you can
>>>> specify the timeout for - which is what you have discovered.
>>>>
>>>> To understand the timeouts, you should manually do the calculations.
>>>>
>>>> Also note, that using HC Erase Size may help (MMC_CAP2_HC_ERASE_SZ), but
>>>> beware of the partitioning implications of changing that.
>>>>
>>>> The best solution is to change the hardware to use the lowest possible
>>>> frequency timeout clock e.g. a 1KHz timeout clock could support timeouts of
>>>> up to 36 hours.
>>>
>>> Don't know the details about the limitations for SDHCI, but I guess
>>> similar exists for other controllers as well.
>>>
>>> I do get the impression that we have got a problem in the mmc
>>> core/block layer for how erase/trim/discard timeouts are being
>>> handled.
>>>
>>> I don't think the mmc hw-controller should be waiting for the R1B
>>> response from the CMD38 as long as this "timeout" we are discussing
>>> here. According to the spec, at least how I interpret it, the card
>>> should respond rather quickly to CMD38, then it will assert the DAT0
>>> line to indicate busy.
>>>
>>
>> For IMX, CMD38 responds very quick since it does not wait for TC interrupt
>> when DAT0 de-assertion due to IP limitation.
>>
>>> The total time the card is allowed to stay busy, that is what the
>>> timeout specifies. We may either use a mmc hw-controller busy
>>> detection mechanism or send CMD13 to poll for status. The latter is
>>> somewhat already being handled in mmc_do_erase(), but we are using
>>> "MMC_CORE_TIMEOUT_MS" instead of the correct timeout.
>>>
>>
>> Maybe one better way may be using polling for status if erase timeout
>> is bigger than
>> host capability, else still prefer to use hw timeout mechanism instead
>> to save CPU.
>
> Nope, this wont work.
>
> Just because we get the R1B response within some chosen timeout that
> does not mean the card has completed it's operation.
>
> We need to monitor if the card is signalling busy, after the R1B
> response has been received to know. Thus polling with CMD13 will be
> needed, no matter how.

In this context I think it should be worth mentioning about how big
the command timeout can be expected to be.

"Ncr" (abbreviation from eMMC spec), the response timeout can be a
value between 2-64 clock cycles.

Kind regards
Ulf Hansson

>
> Kind regards
> Ulf Hansson
>
>> However, then we have two issues:
>> 1) not waiting for R1B seems a bit violation with standard spec.
>> Also it increase complexity on handling the R1B of the same command
>> for two different
>> cases: using hw timeout or polling status for CMD38.
>>
>> 2) In current implementation, the data size to erase will not exceed
>> the max_discard_bytes
>> which is calculated based on max_discard_to of host.
>> Then how do we specify max_discard_to if want to use polling? UNIT_MAX?
>> Will it be too long to affect other activities in the same system?
>
>
>
>>
>> Regards
>> Dong Aisheng
>>
>>> Kind regards
>>> Ulf Hansson
>>>
>>>>
>>>> --
>>>> 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
--
To unsubscribe from this list: send the line "unsubscribe linux-tegra" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Vladimir Zapolskiy Dec. 17, 2013, 1:14 p.m. UTC | #10
On 12/17/13 11:04, Ulf Hansson wrote:
> On 17 December 2013 09:17, Adrian Hunter<adrian.hunter@intel.com>  wrote:
>> On 17/12/13 01:18, Stephen Warren wrote:
>>> On 12/13/2013 03:43 PM, Stephen Warren wrote:
>>>> On one of my eMMC devices, I see the following results from calling
>>>> mmc_do_calc_max_discard() with various parameters:
>>>>
>>>> [    3.057263] MMC_DISCARD_ARG max_discard 1
>>>> [    3.057266] MMC_ERASE_ARG   max_discard 4096
>>>> [    3.057267] MMC_TRIM_ARG    max_discard 1
>>>>
>>>> This causes mmc_calc_max_discard() to return 1, which makes the discard
>>>> IOCTL extremely slow.
>>>
>>> Further investigation shows that if I make a few hacks that essentially
>>> revert e056a1b5b67b "mmc: queue: let host controllers specify maximum
>>> discard timeout":
>>>
>>> diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c
>>> index 357bbc54fe4b..e66af930d0e3 100644
>>> --- a/drivers/mmc/card/queue.c
>>> +++ b/drivers/mmc/card/queue.c
>>> @@ -167,13 +167,15 @@ static void mmc_queue_setup_discard(struct
>>> request_queue *q,
>>>                return;
>>>
>>>        queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q);
>>> -     q->limits.max_discard_sectors = max_discard;
>>> +     q->limits.max_discard_sectors = UINT_MAX;
>>>        if (card->erased_byte == 0&&  !mmc_can_discard(card))
>>>                q->limits.discard_zeroes_data = 1;
>>>        q->limits.discard_granularity = card->pref_erase<<  9;
>>>        /* granularity must not be greater than max. discard */
>>> +#if 0
>>>        if (card->pref_erase>  max_discard)
>>>                q->limits.discard_granularity = 0;
>>> +#endif
>>>        if (mmc_can_secure_erase_trim(card))
>>>                queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, q);
>>>   }
>>>
>>> I end up with:
>>>
>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_granularity
>>> 2097152
>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_max_bytes
>>> 2199023255040
>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_zeroes_data
>>> 1
>>>
>>> With those values, mke2fs is fast, and I validated that "blkdiscard"
>>> works; I filled a large partition with /dev/urandom, executed
>>> "blkdiscard" on the 4M at the start, and saw zeroes when reading the
>>> discarded part back.
>>>
>>> This implies that the issue is simply the operation of
>>> mmc_calc_max_discard(), rather than the eMMC device mis-reporting its
>>> discard abilities, doesn't it?
>>
>> No.
>>
>> The underlying problem is a combination of:
>>          a) JEDEC specified very large timeouts for erase operations e.g. can be
>> minutes for large erases
>>          b) SDHCI controllers have been implemented with high frequency timeout
>> clocks which limit the maximum timeout to a few seconds
>>          c) It is not possible to disable the timeout on SDHCI
>>
>> What a) means is that you can get away with much larger erases than you can
>> specify the timeout for - which is what you have discovered.
>>
>> To understand the timeouts, you should manually do the calculations.
>>
>> Also note, that using HC Erase Size may help (MMC_CAP2_HC_ERASE_SZ), but
>> beware of the partitioning implications of changing that.
>>
>> The best solution is to change the hardware to use the lowest possible
>> frequency timeout clock e.g. a 1KHz timeout clock could support timeouts of
>> up to 36 hours.
>
> Don't know the details about the limitations for SDHCI, but I guess
> similar exists for other controllers as well.
>
> I do get the impression that we have got a problem in the mmc
> core/block layer for how erase/trim/discard timeouts are being
> handled.
>
> I don't think the mmc hw-controller should be waiting for the R1B
> response from the CMD38 as long as this "timeout" we are discussing
> here. According to the spec, at least how I interpret it, the card
> should respond rather quickly to CMD38, then it will assert the DAT0
> line to indicate busy.
>
> The total time the card is allowed to stay busy, that is what the
> timeout specifies. We may either use a mmc hw-controller busy
> detection mechanism or send CMD13 to poll for status. The latter is
> somewhat already being handled in mmc_do_erase(), but we are using
> "MMC_CORE_TIMEOUT_MS" instead of the correct timeout.

What is the correct timeout? The currently implemented logic doesn't
allow to set let say 1000 erase groups (and the correspondent timeout),
on the other hand if it is allowed, then this correct timeout may
take tens of hours, which should not be permitted from user's
perspective. I think the predefined MMC_CORE_TIMEOUT_MS is good enough,
the only missing part is a permission to erase as many erase groups
as wanted by user.

With best wishes,
Vladimir

> Kind regards
> Ulf Hansson
>
>>
>> --
>> 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
--
To unsubscribe from this list: send the line "unsubscribe linux-tegra" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Dong Aisheng Dec. 18, 2013, 3:11 a.m. UTC | #11
On Tue, Dec 17, 2013 at 8:33 PM, Ulf Hansson <ulf.hansson@linaro.org> wrote:
> On 17 December 2013 12:05, Dong Aisheng <dongas86@gmail.com> wrote:
>> On Tue, Dec 17, 2013 at 6:04 PM, Ulf Hansson <ulf.hansson@linaro.org> wrote:
>>> On 17 December 2013 09:17, Adrian Hunter <adrian.hunter@intel.com> wrote:
>>>> On 17/12/13 01:18, Stephen Warren wrote:
>>>>> On 12/13/2013 03:43 PM, Stephen Warren wrote:
>>>>>> On one of my eMMC devices, I see the following results from calling
>>>>>> mmc_do_calc_max_discard() with various parameters:
>>>>>>
>>>>>> [    3.057263] MMC_DISCARD_ARG max_discard 1
>>>>>> [    3.057266] MMC_ERASE_ARG   max_discard 4096
>>>>>> [    3.057267] MMC_TRIM_ARG    max_discard 1
>>>>>>
>>>>>> This causes mmc_calc_max_discard() to return 1, which makes the discard
>>>>>> IOCTL extremely slow.
>>>>>
>>>>> Further investigation shows that if I make a few hacks that essentially
>>>>> revert e056a1b5b67b "mmc: queue: let host controllers specify maximum
>>>>> discard timeout":
>>>>>
>>>>> diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c
>>>>> index 357bbc54fe4b..e66af930d0e3 100644
>>>>> --- a/drivers/mmc/card/queue.c
>>>>> +++ b/drivers/mmc/card/queue.c
>>>>> @@ -167,13 +167,15 @@ static void mmc_queue_setup_discard(struct
>>>>> request_queue *q,
>>>>>               return;
>>>>>
>>>>>       queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q);
>>>>> -     q->limits.max_discard_sectors = max_discard;
>>>>> +     q->limits.max_discard_sectors = UINT_MAX;
>>>>>       if (card->erased_byte == 0 && !mmc_can_discard(card))
>>>>>               q->limits.discard_zeroes_data = 1;
>>>>>       q->limits.discard_granularity = card->pref_erase << 9;
>>>>>       /* granularity must not be greater than max. discard */
>>>>> +#if 0
>>>>>       if (card->pref_erase > max_discard)
>>>>>               q->limits.discard_granularity = 0;
>>>>> +#endif
>>>>>       if (mmc_can_secure_erase_trim(card))
>>>>>               queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, q);
>>>>>  }
>>>>>
>>>>> I end up with:
>>>>>
>>>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_granularity
>>>>> 2097152
>>>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_max_bytes
>>>>> 2199023255040
>>>>> $ cat /sys/.../block/mmcblk1/queue# cat discard_zeroes_data
>>>>> 1
>>>>>
>>>>> With those values, mke2fs is fast, and I validated that "blkdiscard"
>>>>> works; I filled a large partition with /dev/urandom, executed
>>>>> "blkdiscard" on the 4M at the start, and saw zeroes when reading the
>>>>> discarded part back.
>>>>>
>>>>> This implies that the issue is simply the operation of
>>>>> mmc_calc_max_discard(), rather than the eMMC device mis-reporting its
>>>>> discard abilities, doesn't it?
>>>>
>>>> No.
>>>>
>>>> The underlying problem is a combination of:
>>>>         a) JEDEC specified very large timeouts for erase operations e.g. can be
>>>> minutes for large erases
>>>>         b) SDHCI controllers have been implemented with high frequency timeout
>>>> clocks which limit the maximum timeout to a few seconds
>>>>         c) It is not possible to disable the timeout on SDHCI
>>>>
>>>> What a) means is that you can get away with much larger erases than you can
>>>> specify the timeout for - which is what you have discovered.
>>>>
>>>> To understand the timeouts, you should manually do the calculations.
>>>>
>>>> Also note, that using HC Erase Size may help (MMC_CAP2_HC_ERASE_SZ), but
>>>> beware of the partitioning implications of changing that.
>>>>
>>>> The best solution is to change the hardware to use the lowest possible
>>>> frequency timeout clock e.g. a 1KHz timeout clock could support timeouts of
>>>> up to 36 hours.
>>>
>>> Don't know the details about the limitations for SDHCI, but I guess
>>> similar exists for other controllers as well.
>>>
>>> I do get the impression that we have got a problem in the mmc
>>> core/block layer for how erase/trim/discard timeouts are being
>>> handled.
>>>
>>> I don't think the mmc hw-controller should be waiting for the R1B
>>> response from the CMD38 as long as this "timeout" we are discussing
>>> here. According to the spec, at least how I interpret it, the card
>>> should respond rather quickly to CMD38, then it will assert the DAT0
>>> line to indicate busy.
>>>
>>
>> For IMX, CMD38 responds very quick since it does not wait for TC interrupt
>> when DAT0 de-assertion due to IP limitation.
>>
>>> The total time the card is allowed to stay busy, that is what the
>>> timeout specifies. We may either use a mmc hw-controller busy
>>> detection mechanism or send CMD13 to poll for status. The latter is
>>> somewhat already being handled in mmc_do_erase(), but we are using
>>> "MMC_CORE_TIMEOUT_MS" instead of the correct timeout.
>>>
>>
>> Maybe one better way may be using polling for status if erase timeout
>> is bigger than
>> host capability, else still prefer to use hw timeout mechanism instead
>> to save CPU.
>
> Nope, this wont work.
>
> Just because we get the R1B response within some chosen timeout that
> does not mean the card has completed it's operation.
>

I mean do not wait for R1B busy signal, IOW replace R1b with R1.
Then using polling way to check card's busy status.

Regards
Dong Aisheng

> We need to monitor if the card is signalling busy, after the R1B
> response has been received to know. Thus polling with CMD13 will be
> needed, no matter how.
>
> Kind regards
> Ulf Hansson
>
>> However, then we have two issues:
>> 1) not waiting for R1B seems a bit violation with standard spec.
>> Also it increase complexity on handling the R1B of the same command
>> for two different
>> cases: using hw timeout or polling status for CMD38.
>>
>> 2) In current implementation, the data size to erase will not exceed
>> the max_discard_bytes
>> which is calculated based on max_discard_to of host.
>> Then how do we specify max_discard_to if want to use polling? UNIT_MAX?
>> Will it be too long to affect other activities in the same system?
>
>
>
>>
>> Regards
>> Dong Aisheng
>>
>>> Kind regards
>>> Ulf Hansson
>>>
>>>>
>>>> --
>>>> 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
--
To unsubscribe from this list: send the line "unsubscribe linux-tegra" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c
index 357bbc54fe4b..e66af930d0e3 100644
--- a/drivers/mmc/card/queue.c
+++ b/drivers/mmc/card/queue.c
@@ -167,13 +167,15 @@  static void mmc_queue_setup_discard(struct
request_queue *q,
 		return;

 	queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q);
-	q->limits.max_discard_sectors = max_discard;
+	q->limits.max_discard_sectors = UINT_MAX;
 	if (card->erased_byte == 0 && !mmc_can_discard(card))
 		q->limits.discard_zeroes_data = 1;
 	q->limits.discard_granularity = card->pref_erase << 9;
 	/* granularity must not be greater than max. discard */
+#if 0
 	if (card->pref_erase > max_discard)
 		q->limits.discard_granularity = 0;
+#endif
 	if (mmc_can_secure_erase_trim(card))
 		queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, q);