All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] pm80xx: Fix hibernation issue
@ 2014-06-16 19:30 bradley.grove
  2014-06-17  0:04 ` James Bottomley
  0 siblings, 1 reply; 3+ messages in thread
From: bradley.grove @ 2014-06-16 19:30 UTC (permalink / raw)
  To: linux-scsi; +Cc: JBottomley, xjtuwjp, ebrown, pcullen, Bradley Grove

From: Bradley Grove <bgrove@attotech.com>

During hibernation, the HBA firmware may lose power and forget the device
id info.   This causes the HBA to reject IO upon resume.   The fix is
to call the libsas power management routines to make the domain device
forgetful.

This patch also changes the value of pm8001_flags during resume to allow
completions to work.

This fixes bug 76681: https://bugzilla.kernel.org/show_bug.cgi?id=76681

Signed-off-by: Bradley Grove <bgrove@attotech.com>
---
 drivers/scsi/pm8001/pm8001_init.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/drivers/scsi/pm8001/pm8001_init.c b/drivers/scsi/pm8001/pm8001_init.c
index c4f31b21..9f51a1f 100644
--- a/drivers/scsi/pm8001/pm8001_init.c
+++ b/drivers/scsi/pm8001/pm8001_init.c
@@ -957,6 +957,7 @@ static int pm8001_pci_suspend(struct pci_dev *pdev, pm_message_t state)
 	int  i, j;
 	u32 device_state;
 	pm8001_ha = sha->lldd_ha;
+	sas_suspend_ha(sha);
 	flush_workqueue(pm8001_wq);
 	scsi_block_requests(pm8001_ha->shost);
 	if (!pdev->pm_cap) {
@@ -1026,7 +1027,7 @@ static int pm8001_pci_resume(struct pci_dev *pdev)
 	rc = pci_go_44(pdev);
 	if (rc)
 		goto err_out_disable;
-
+	sas_prep_resume_ha(sha);
 	/* chip soft rst only for spc */
 	if (pm8001_ha->chip_id == chip_8001) {
 		PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha);
@@ -1058,7 +1059,12 @@ static int pm8001_pci_resume(struct pci_dev *pdev)
 		for (i = 1; i < pm8001_ha->number_of_intr; i++)
 			PM8001_CHIP_DISP->interrupt_enable(pm8001_ha, i);
 	}
+	pm8001_ha->flags = PM8001F_INIT_TIME;
 	scsi_unblock_requests(pm8001_ha->shost);
+	pm8001_scan_start(pm8001_ha->shost);
+	msleep(100);
+	sas_resume_ha(sha);
+	pm8001_ha->flags = PM8001F_RUN_TIME;
 	return 0;
 
 err_out_disable:
-- 
1.9.3


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

* Re: [PATCH] pm80xx: Fix hibernation issue
  2014-06-16 19:30 [PATCH] pm80xx: Fix hibernation issue bradley.grove
@ 2014-06-17  0:04 ` James Bottomley
  2014-06-17 20:55   ` Bradley Grove
  0 siblings, 1 reply; 3+ messages in thread
From: James Bottomley @ 2014-06-17  0:04 UTC (permalink / raw)
  To: bradley.grove; +Cc: linux-scsi, xjtuwjp, ebrown, pcullen, Bradley Grove

On Mon, 2014-06-16 at 15:30 -0400, bradley.grove@gmail.com wrote:
> From: Bradley Grove <bgrove@attotech.com>
> 
> During hibernation, the HBA firmware may lose power and forget the device
> id info.   This causes the HBA to reject IO upon resume.   The fix is
> to call the libsas power management routines to make the domain device
> forgetful.
> 
> This patch also changes the value of pm8001_flags during resume to allow
> completions to work.
> 
> This fixes bug 76681: https://bugzilla.kernel.org/show_bug.cgi?id=76681
> 
> Signed-off-by: Bradley Grove <bgrove@attotech.com>
> ---
>  drivers/scsi/pm8001/pm8001_init.c | 8 +++++++-
>  1 file changed, 7 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/scsi/pm8001/pm8001_init.c b/drivers/scsi/pm8001/pm8001_init.c
> index c4f31b21..9f51a1f 100644
> --- a/drivers/scsi/pm8001/pm8001_init.c
> +++ b/drivers/scsi/pm8001/pm8001_init.c
> @@ -957,6 +957,7 @@ static int pm8001_pci_suspend(struct pci_dev *pdev, pm_message_t state)
>  	int  i, j;
>  	u32 device_state;
>  	pm8001_ha = sha->lldd_ha;
> +	sas_suspend_ha(sha);
>  	flush_workqueue(pm8001_wq);
>  	scsi_block_requests(pm8001_ha->shost);
>  	if (!pdev->pm_cap) {
> @@ -1026,7 +1027,7 @@ static int pm8001_pci_resume(struct pci_dev *pdev)
>  	rc = pci_go_44(pdev);
>  	if (rc)
>  		goto err_out_disable;
> -
> +	sas_prep_resume_ha(sha);
>  	/* chip soft rst only for spc */
>  	if (pm8001_ha->chip_id == chip_8001) {
>  		PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha);
> @@ -1058,7 +1059,12 @@ static int pm8001_pci_resume(struct pci_dev *pdev)
>  		for (i = 1; i < pm8001_ha->number_of_intr; i++)
>  			PM8001_CHIP_DISP->interrupt_enable(pm8001_ha, i);
>  	}
> +	pm8001_ha->flags = PM8001F_INIT_TIME;
>  	scsi_unblock_requests(pm8001_ha->shost);
> +	pm8001_scan_start(pm8001_ha->shost);
> +	msleep(100);

What's the reason for the 0.1s sleep?  Something tells me it's to try to
ensure that all the work kicked off by the scan start is completed in
which case a sleep seems to be a bit racy.

James

> +	sas_resume_ha(sha);
> +	pm8001_ha->flags = PM8001F_RUN_TIME;
>  	return 0;
>  
>  err_out_disable:



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

* Re: [PATCH] pm80xx: Fix hibernation issue
  2014-06-17  0:04 ` James Bottomley
@ 2014-06-17 20:55   ` Bradley Grove
  0 siblings, 0 replies; 3+ messages in thread
From: Bradley Grove @ 2014-06-17 20:55 UTC (permalink / raw)
  To: James Bottomley, bradley.grove; +Cc: linux-scsi, xjtuwjp, ebrown, pcullen


James,

The sleep is there to delay until the work kicked off by the scan start 
is complete.

Jack Wang and I are working on a different fix that won't require the delay.

Brad


On 06/16/2014 08:04 PM, James Bottomley wrote:
> On Mon, 2014-06-16 at 15:30 -0400, bradley.grove@gmail.com wrote:
>> From: Bradley Grove <bgrove@attotech.com>
>>
>> During hibernation, the HBA firmware may lose power and forget the device
>> id info.   This causes the HBA to reject IO upon resume.   The fix is
>> to call the libsas power management routines to make the domain device
>> forgetful.
>>
>> This patch also changes the value of pm8001_flags during resume to allow
>> completions to work.
>>
>> This fixes bug 76681: https://bugzilla.kernel.org/show_bug.cgi?id=76681
>>
>> Signed-off-by: Bradley Grove <bgrove@attotech.com>
>> ---
>>   drivers/scsi/pm8001/pm8001_init.c | 8 +++++++-
>>   1 file changed, 7 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/scsi/pm8001/pm8001_init.c b/drivers/scsi/pm8001/pm8001_init.c
>> index c4f31b21..9f51a1f 100644
>> --- a/drivers/scsi/pm8001/pm8001_init.c
>> +++ b/drivers/scsi/pm8001/pm8001_init.c
>> @@ -957,6 +957,7 @@ static int pm8001_pci_suspend(struct pci_dev *pdev, pm_message_t state)
>>   	int  i, j;
>>   	u32 device_state;
>>   	pm8001_ha = sha->lldd_ha;
>> +	sas_suspend_ha(sha);
>>   	flush_workqueue(pm8001_wq);
>>   	scsi_block_requests(pm8001_ha->shost);
>>   	if (!pdev->pm_cap) {
>> @@ -1026,7 +1027,7 @@ static int pm8001_pci_resume(struct pci_dev *pdev)
>>   	rc = pci_go_44(pdev);
>>   	if (rc)
>>   		goto err_out_disable;
>> -
>> +	sas_prep_resume_ha(sha);
>>   	/* chip soft rst only for spc */
>>   	if (pm8001_ha->chip_id == chip_8001) {
>>   		PM8001_CHIP_DISP->chip_soft_rst(pm8001_ha);
>> @@ -1058,7 +1059,12 @@ static int pm8001_pci_resume(struct pci_dev *pdev)
>>   		for (i = 1; i < pm8001_ha->number_of_intr; i++)
>>   			PM8001_CHIP_DISP->interrupt_enable(pm8001_ha, i);
>>   	}
>> +	pm8001_ha->flags = PM8001F_INIT_TIME;
>>   	scsi_unblock_requests(pm8001_ha->shost);
>> +	pm8001_scan_start(pm8001_ha->shost);
>> +	msleep(100);
>
> What's the reason for the 0.1s sleep?  Something tells me it's to try to
> ensure that all the work kicked off by the scan start is completed in
> which case a sleep seems to be a bit racy.
>
> James
>
>> +	sas_resume_ha(sha);
>> +	pm8001_ha->flags = PM8001F_RUN_TIME;
>>   	return 0;
>>
>>   err_out_disable:
>
>


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

end of thread, other threads:[~2014-06-17 21:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-16 19:30 [PATCH] pm80xx: Fix hibernation issue bradley.grove
2014-06-17  0:04 ` James Bottomley
2014-06-17 20:55   ` Bradley Grove

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.