Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1464183 > unrolled thread

[PACTH v3] mmc: sdhci: Do not allow tuning procedure to be interrupted

Started byrobert.foss@collabora.com
First post2016-08-16 23:30 +0200
Last post2016-08-18 16:00 +0200
Articles 5 — 4 participants

Back to article view | Back to linux.kernel


Contents

  [PACTH v3] mmc: sdhci: Do not allow tuning procedure to be interrupted robert.foss@collabora.com - 2016-08-16 23:30 +0200
    Re: [PACTH v3] mmc: sdhci: Do not allow tuning procedure to be  interrupted Adrian Hunter <adrian.hunter@intel.com> - 2016-08-17 13:00 +0200
      Re: [PACTH v3] mmc: sdhci: Do not allow tuning procedure to be  interrupted Robert Foss <robert.foss@collabora.com> - 2016-08-17 19:40 +0200
        Re: [PACTH v3] mmc: sdhci: Do not allow tuning procedure to be  interrupted Christopher Freeman <cfreeman@nvidia.com> - 2016-08-18 00:20 +0200
          Re: [PACTH v3] mmc: sdhci: Do not allow tuning procedure to be  interrupted Adrian Hunter <adrian.hunter@intel.com> - 2016-08-18 16:00 +0200

#1464183 — [PACTH v3] mmc: sdhci: Do not allow tuning procedure to be interrupted

Fromrobert.foss@collabora.com
Date2016-08-16 23:30 +0200
Subject[PACTH v3] mmc: sdhci: Do not allow tuning procedure to be interrupted
Message-ID<s6U5R-8nJ-39@gated-at.bofh.it>
From: Christopher Freeman <cfreeman@nvidia.com>

wait_event_interruptible_timeout() will return early if the blocked
process receives a signal, causing the driver to abort the tuning
procedure and possibly leaving the controller in a bad state.  Since the
tuning command is expected to complete quickly (<50ms) and we've set a
timeout, use wait_event_timeout() instead.

Signed-off-by: Christopher Freeman <cfreeman@nvidia.com>
Tested-by: Robert Foss <robert.foss@collabora.com>
Signed-off-by: Robert Foss <robert.foss@collabora.com>
Reviewed-by: Benson Leung <bleung@chromium.org>
---
 drivers/mmc/host/sdhci.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c
index 0e3d7c0..9e80203 100644
--- a/drivers/mmc/host/sdhci.c
+++ b/drivers/mmc/host/sdhci.c
@@ -1960,7 +1960,7 @@ static int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode)
 
 		spin_unlock_irqrestore(&host->lock, flags);
 		/* Wait for Buffer Read Ready interrupt */
-		wait_event_interruptible_timeout(host->buf_ready_int,
+		wait_event_timeout(host->buf_ready_int,
 					(host->tuning_done == 1),
 					msecs_to_jiffies(50));
 		spin_lock_irqsave(&host->lock, flags);
-- 
2.7.4

[toc] | [next] | [standalone]


#1464504 — Re: [PACTH v3] mmc: sdhci: Do not allow tuning procedure to be interrupted

FromAdrian Hunter <adrian.hunter@intel.com>
Date2016-08-17 13:00 +0200
SubjectRe: [PACTH v3] mmc: sdhci: Do not allow tuning procedure to be interrupted
Message-ID<s76JI-8kQ-13@gated-at.bofh.it>
In reply to#1464183
On 17/08/16 00:25, robert.foss@collabora.com wrote:
> From: Christopher Freeman <cfreeman@nvidia.com>
> 
> wait_event_interruptible_timeout() will return early if the blocked
> process receives a signal, causing the driver to abort the tuning
> procedure and possibly leaving the controller in a bad state.  Since the
> tuning command is expected to complete quickly (<50ms) and we've set a
> timeout, use wait_event_timeout() instead.
> 
> Signed-off-by: Christopher Freeman <cfreeman@nvidia.com>
> Tested-by: Robert Foss <robert.foss@collabora.com>
> Signed-off-by: Robert Foss <robert.foss@collabora.com>
> Reviewed-by: Benson Leung <bleung@chromium.org>

The mmc block queues are kernel threads which I would expect ignore signals,
so I am curious how you hit this?

In any case:

Acked-by: Adrian Hunter <adrian.hunter@intel.com>

> ---
>  drivers/mmc/host/sdhci.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c
> index 0e3d7c0..9e80203 100644
> --- a/drivers/mmc/host/sdhci.c
> +++ b/drivers/mmc/host/sdhci.c
> @@ -1960,7 +1960,7 @@ static int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode)
>  
>  		spin_unlock_irqrestore(&host->lock, flags);
>  		/* Wait for Buffer Read Ready interrupt */
> -		wait_event_interruptible_timeout(host->buf_ready_int,
> +		wait_event_timeout(host->buf_ready_int,
>  					(host->tuning_done == 1),
>  					msecs_to_jiffies(50));
>  		spin_lock_irqsave(&host->lock, flags);
> 

[toc] | [prev] | [next] | [standalone]


#1464686 — Re: [PACTH v3] mmc: sdhci: Do not allow tuning procedure to be interrupted

FromRobert Foss <robert.foss@collabora.com>
Date2016-08-17 19:40 +0200
SubjectRe: [PACTH v3] mmc: sdhci: Do not allow tuning procedure to be interrupted
Message-ID<s7cYO-49X-5@gated-at.bofh.it>
In reply to#1464504

On 2016-08-17 06:47 AM, Adrian Hunter wrote:
> On 17/08/16 00:25, robert.foss@collabora.com wrote:
>> From: Christopher Freeman <cfreeman@nvidia.com>
>>
>> wait_event_interruptible_timeout() will return early if the blocked
>> process receives a signal, causing the driver to abort the tuning
>> procedure and possibly leaving the controller in a bad state.  Since the
>> tuning command is expected to complete quickly (<50ms) and we've set a
>> timeout, use wait_event_timeout() instead.
>>
>> Signed-off-by: Christopher Freeman <cfreeman@nvidia.com>
>> Tested-by: Robert Foss <robert.foss@collabora.com>
>> Signed-off-by: Robert Foss <robert.foss@collabora.com>
>> Reviewed-by: Benson Leung <bleung@chromium.org>
>
> The mmc block queues are kernel threads which I would expect ignore signals,
> so I am curious how you hit this?

The issue was discovered on (tegra2?) hardware that is sensitive to 
being interrupted during tuning and having the controller left in a 
sensitive state.

@Christopher Freeman: Maybe you can provide us with some additional details?

>
> In any case:
>
> Acked-by: Adrian Hunter <adrian.hunter@intel.com>
>

[toc] | [prev] | [next] | [standalone]


#1464842 — Re: [PACTH v3] mmc: sdhci: Do not allow tuning procedure to be interrupted

FromChristopher Freeman <cfreeman@nvidia.com>
Date2016-08-18 00:20 +0200
SubjectRe: [PACTH v3] mmc: sdhci: Do not allow tuning procedure to be interrupted
Message-ID<s7hlM-7r8-15@gated-at.bofh.it>
In reply to#1464686
On 08-17 01:31 PM, Robert Foss wrote:
> 
> 
> On 2016-08-17 06:47 AM, Adrian Hunter wrote:
> >On 17/08/16 00:25, robert.foss@collabora.com wrote:
> >>From: Christopher Freeman <cfreeman@nvidia.com>
> >>
> >>wait_event_interruptible_timeout() will return early if the blocked
> >>process receives a signal, causing the driver to abort the tuning
> >>procedure and possibly leaving the controller in a bad state.  Since the
> >>tuning command is expected to complete quickly (<50ms) and we've set a
> >>timeout, use wait_event_timeout() instead.
> >>
> >>Signed-off-by: Christopher Freeman <cfreeman@nvidia.com>
> >>Tested-by: Robert Foss <robert.foss@collabora.com>
> >>Signed-off-by: Robert Foss <robert.foss@collabora.com>
> >>Reviewed-by: Benson Leung <bleung@chromium.org>
> >
> >The mmc block queues are kernel threads which I would expect ignore signals,
> >so I am curious how you hit this?
> 
> The issue was discovered on (tegra2?) hardware that is sensitive to
> being interrupted during tuning and having the controller left in a
> sensitive state.
> 
> @Christopher Freeman: Maybe you can provide us with some additional details?
> 

It was found with Tegra 210.  The signalling was an issue because tuning was
kicked off from an ioctl to the wifi device on the controller.

FWIW, this issue was particular to the wifi driver (bcmdhd) and the android
tree.   It in part depends on the way the wifi driver is able to reset the
sdio device via a routine that's not present in mainline: sdio_reset_comm.
I believe the wifi driver would power on the wifi chip and trigger tuning in
the aforementioned ioctl.  Process that sent the ioctl was some network or wifi
manager service on Android.

Let me know if you would like any more details.

> >
> >In any case:
> >
> >Acked-by: Adrian Hunter <adrian.hunter@intel.com>
> >

[toc] | [prev] | [next] | [standalone]


#1465382 — Re: [PACTH v3] mmc: sdhci: Do not allow tuning procedure to be interrupted

FromAdrian Hunter <adrian.hunter@intel.com>
Date2016-08-18 16:00 +0200
SubjectRe: [PACTH v3] mmc: sdhci: Do not allow tuning procedure to be interrupted
Message-ID<s7w1s-vD-21@gated-at.bofh.it>
In reply to#1464842
On 18/08/16 01:12, Christopher Freeman wrote:
> On 08-17 01:31 PM, Robert Foss wrote:
>>
>>
>> On 2016-08-17 06:47 AM, Adrian Hunter wrote:
>>> On 17/08/16 00:25, robert.foss@collabora.com wrote:
>>>> From: Christopher Freeman <cfreeman@nvidia.com>
>>>>
>>>> wait_event_interruptible_timeout() will return early if the blocked
>>>> process receives a signal, causing the driver to abort the tuning
>>>> procedure and possibly leaving the controller in a bad state.  Since the
>>>> tuning command is expected to complete quickly (<50ms) and we've set a
>>>> timeout, use wait_event_timeout() instead.
>>>>
>>>> Signed-off-by: Christopher Freeman <cfreeman@nvidia.com>
>>>> Tested-by: Robert Foss <robert.foss@collabora.com>
>>>> Signed-off-by: Robert Foss <robert.foss@collabora.com>
>>>> Reviewed-by: Benson Leung <bleung@chromium.org>
>>>
>>> The mmc block queues are kernel threads which I would expect ignore signals,
>>> so I am curious how you hit this?
>>
>> The issue was discovered on (tegra2?) hardware that is sensitive to
>> being interrupted during tuning and having the controller left in a
>> sensitive state.
>>
>> @Christopher Freeman: Maybe you can provide us with some additional details?
>>
> 
> It was found with Tegra 210.  The signalling was an issue because tuning was
> kicked off from an ioctl to the wifi device on the controller.
> 
> FWIW, this issue was particular to the wifi driver (bcmdhd) and the android
> tree.   It in part depends on the way the wifi driver is able to reset the
> sdio device via a routine that's not present in mainline: sdio_reset_comm.
> I believe the wifi driver would power on the wifi chip and trigger tuning in
> the aforementioned ioctl.  Process that sent the ioctl was some network or wifi
> manager service on Android.
> 
> Let me know if you would like any more details.

Thanks for the explanation.

> 
>>>
>>> In any case:
>>>
>>> Acked-by: Adrian Hunter <adrian.hunter@intel.com>
>>>
> 

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web