linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mmc: core: add missing pm event in mmc_pm_notify to fix hib restore
@ 2015-04-23 10:43 grygorii.strashko at linaro.org
  2015-04-23 13:19 ` Ulf Hansson
  0 siblings, 1 reply; 3+ messages in thread
From: grygorii.strashko at linaro.org @ 2015-04-23 10:43 UTC (permalink / raw)
  To: linux-arm-kernel

From: Grygorii Strashko <Grygorii.Strashko@linaro.org>

The PM_RESTORE_PREPARE is not handled now in mmc_pm_notify(),
as result mmc_rescan() could be scheduled and executed at
late hibernation restore stages when MMC device is suspended
already - which, in turn, will lead to system crash on TI dra7-evm board:

WARNING: CPU: 0 PID: 3188 at drivers/bus/omap_l3_noc.c:148 l3_interrupt_handler+0x258/0x374()
44000000.ocp:L3 Custom Error: MASTER MPU TARGET L4_PER1_P3 (Idle): Data Access in User mode during Functional access

Hence, add missed PM_RESTORE_PREPARE PM event in mmc_pm_notify().

Signed-off-by: Grygorii Strashko <Grygorii.Strashko@linaro.org>
---
 drivers/mmc/core/core.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c
index c296bc0..92e7671 100644
--- a/drivers/mmc/core/core.c
+++ b/drivers/mmc/core/core.c
@@ -2651,6 +2651,7 @@ int mmc_pm_notify(struct notifier_block *notify_block,
 	switch (mode) {
 	case PM_HIBERNATION_PREPARE:
 	case PM_SUSPEND_PREPARE:
+	case PM_RESTORE_PREPARE:
 		spin_lock_irqsave(&host->lock, flags);
 		host->rescan_disable = 1;
 		spin_unlock_irqrestore(&host->lock, flags);
-- 
1.9.1

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

* [PATCH] mmc: core: add missing pm event in mmc_pm_notify to fix hib restore
  2015-04-23 10:43 [PATCH] mmc: core: add missing pm event in mmc_pm_notify to fix hib restore grygorii.strashko at linaro.org
@ 2015-04-23 13:19 ` Ulf Hansson
  2015-04-24 10:52   ` Grygorii.Strashko@linaro.org
  0 siblings, 1 reply; 3+ messages in thread
From: Ulf Hansson @ 2015-04-23 13:19 UTC (permalink / raw)
  To: linux-arm-kernel

On 23 April 2015 at 12:43,  <grygorii.strashko@linaro.org> wrote:
> From: Grygorii Strashko <Grygorii.Strashko@linaro.org>
>
> The PM_RESTORE_PREPARE is not handled now in mmc_pm_notify(),
> as result mmc_rescan() could be scheduled and executed at
> late hibernation restore stages when MMC device is suspended
> already - which, in turn, will lead to system crash on TI dra7-evm board:
>
> WARNING: CPU: 0 PID: 3188 at drivers/bus/omap_l3_noc.c:148 l3_interrupt_handler+0x258/0x374()
> 44000000.ocp:L3 Custom Error: MASTER MPU TARGET L4_PER1_P3 (Idle): Data Access in User mode during Functional access
>
> Hence, add missed PM_RESTORE_PREPARE PM event in mmc_pm_notify().
>
> Signed-off-by: Grygorii Strashko <Grygorii.Strashko@linaro.org>

Huh, that was an old bug you found. :-)

I have applied it for fixes and added the below fixes tag.

Fixes: 4c2ef25fe0b8 (mmc: fix all hangs related to mmc/sd card
insert/removal during suspend/resume)

Thanks and kind regards!
Uffe

> ---
>  drivers/mmc/core/core.c | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c
> index c296bc0..92e7671 100644
> --- a/drivers/mmc/core/core.c
> +++ b/drivers/mmc/core/core.c
> @@ -2651,6 +2651,7 @@ int mmc_pm_notify(struct notifier_block *notify_block,
>         switch (mode) {
>         case PM_HIBERNATION_PREPARE:
>         case PM_SUSPEND_PREPARE:
> +       case PM_RESTORE_PREPARE:
>                 spin_lock_irqsave(&host->lock, flags);
>                 host->rescan_disable = 1;
>                 spin_unlock_irqrestore(&host->lock, flags);
> --
> 1.9.1
>

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

* [PATCH] mmc: core: add missing pm event in mmc_pm_notify to fix hib restore
  2015-04-23 13:19 ` Ulf Hansson
@ 2015-04-24 10:52   ` Grygorii.Strashko@linaro.org
  0 siblings, 0 replies; 3+ messages in thread
From: Grygorii.Strashko@linaro.org @ 2015-04-24 10:52 UTC (permalink / raw)
  To: linux-arm-kernel

On 04/23/2015 04:19 PM, Ulf Hansson wrote:
> On 23 April 2015 at 12:43,  <grygorii.strashko@linaro.org> wrote:
>> From: Grygorii Strashko <Grygorii.Strashko@linaro.org>
>>
>> The PM_RESTORE_PREPARE is not handled now in mmc_pm_notify(),
>> as result mmc_rescan() could be scheduled and executed at
>> late hibernation restore stages when MMC device is suspended
>> already - which, in turn, will lead to system crash on TI dra7-evm board:
>>
>> WARNING: CPU: 0 PID: 3188 at drivers/bus/omap_l3_noc.c:148 l3_interrupt_handler+0x258/0x374()
>> 44000000.ocp:L3 Custom Error: MASTER MPU TARGET L4_PER1_P3 (Idle): Data Access in User mode during Functional access
>>
>> Hence, add missed PM_RESTORE_PREPARE PM event in mmc_pm_notify().
>>
>> Signed-off-by: Grygorii Strashko <Grygorii.Strashko@linaro.org>
> 
> Huh, that was an old bug you found. :-)

oh yes. it's happened thanks to HW issue on my board which
generates a flood of SDCD IRQs :)

It's the worst case ever to track wrong/missed PM notifiers (

> 
> I have applied it for fixes and added the below fixes tag.
> 
> Fixes: 4c2ef25fe0b8 (mmc: fix all hangs related to mmc/sd card
> insert/removal during suspend/resume)

Thanks. 

-- 
regards,
-grygorii

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

end of thread, other threads:[~2015-04-24 10:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-23 10:43 [PATCH] mmc: core: add missing pm event in mmc_pm_notify to fix hib restore grygorii.strashko at linaro.org
2015-04-23 13:19 ` Ulf Hansson
2015-04-24 10:52   ` Grygorii.Strashko@linaro.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).