* [patch 13/14] ACPI: Correctly recover from a failed S3 attempt @ 2006-08-15 5:37 akpm 2006-08-16 4:27 ` Len Brown 2006-08-16 22:00 ` Len Brown 0 siblings, 2 replies; 5+ messages in thread From: akpm @ 2006-08-15 5:37 UTC (permalink / raw) To: len.brown; +Cc: linux-acpi, akpm, william.morrow, jordan.crouse, luming.yu From: William Morrrow <william.morrow@amd.com> This was discovered on a broken BIOS that simply returned from its suspend procedure, appearing to the OS as a failed S3 attempt. It is possible to invoke the protected mode register restore routine (which would normally restore the sysenter registers) when the bios returns from S3. This has no effect on a correctly running system and repairs the damage from broken BIOS. Signed-off-by: William Morrow <william.morrow@amd.com> Signed-off-by: Jordan Crouse <jordan.crouse@amd.com> Cc: "Yu, Luming" <luming.yu@intel.com> Cc: "Brown, Len" <len.brown@intel.com> Signed-off-by: Andrew Morton <akpm@osdl.org> --- arch/i386/kernel/acpi/wakeup.S | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff -puN arch/i386/kernel/acpi/wakeup.S~acpi-correctly-recover-from-a-failed-s3-attempt arch/i386/kernel/acpi/wakeup.S --- a/arch/i386/kernel/acpi/wakeup.S~acpi-correctly-recover-from-a-failed-s3-attempt +++ a/arch/i386/kernel/acpi/wakeup.S @@ -292,7 +292,10 @@ ENTRY(do_suspend_lowlevel) pushl $3 call acpi_enter_sleep_state addl $4, %esp - ret + +# In case of S3 failure, we'll emerge here. Jump +# to ret_point to recover + jmp ret_point .p2align 4,,7 ret_point: call restore_registers _ ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [patch 13/14] ACPI: Correctly recover from a failed S3 attempt 2006-08-15 5:37 [patch 13/14] ACPI: Correctly recover from a failed S3 attempt akpm @ 2006-08-16 4:27 ` Len Brown 2006-08-16 17:58 ` William Morrow 2006-08-16 22:00 ` Len Brown 1 sibling, 1 reply; 5+ messages in thread From: Len Brown @ 2006-08-16 4:27 UTC (permalink / raw) To: william.morrow; +Cc: akpm, linux-acpi, jordan.crouse, luming.yu On Tuesday 15 August 2006 01:37, akpm@osdl.org wrote: > From: William Morrrow <william.morrow@amd.com> > > This was discovered on a broken BIOS that simply returned from its suspend > procedure, appearing to the OS as a failed S3 attempt. > > It is possible to invoke the protected mode register restore routine (which > would normally restore the sysenter registers) when the bios returns from > S3. This has no effect on a correctly running system and repairs the > damage from broken BIOS. Where and why does acpi_enter_sleep_state() bail out? Does S3 work on windows on this box? How does the machine fail without this patch -- does it crash or hang on entering S3? Does the patch below imply that we've got the return from acpi_enter_sleep_state wrong no matter why it returns? thanks, -Len > Signed-off-by: William Morrow <william.morrow@amd.com> > Signed-off-by: Jordan Crouse <jordan.crouse@amd.com> > Cc: "Yu, Luming" <luming.yu@intel.com> > Cc: "Brown, Len" <len.brown@intel.com> > Signed-off-by: Andrew Morton <akpm@osdl.org> > --- > > arch/i386/kernel/acpi/wakeup.S | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff -puN arch/i386/kernel/acpi/wakeup.S~acpi-correctly-recover-from-a-failed-s3-attempt arch/i386/kernel/acpi/wakeup.S > --- a/arch/i386/kernel/acpi/wakeup.S~acpi-correctly-recover-from-a-failed-s3-attempt > +++ a/arch/i386/kernel/acpi/wakeup.S > @@ -292,7 +292,10 @@ ENTRY(do_suspend_lowlevel) > pushl $3 > call acpi_enter_sleep_state > addl $4, %esp > - ret > + > +# In case of S3 failure, we'll emerge here. Jump > +# to ret_point to recover > + jmp ret_point > .p2align 4,,7 > ret_point: > call restore_registers > _ > - > To unsubscribe from this list: send the line "unsubscribe linux-acpi" 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] 5+ messages in thread
* Re: [patch 13/14] ACPI: Correctly recover from a failed S3 attempt 2006-08-16 4:27 ` Len Brown @ 2006-08-16 17:58 ` William Morrow 2006-08-16 21:55 ` Len Brown 0 siblings, 1 reply; 5+ messages in thread From: William Morrow @ 2006-08-16 17:58 UTC (permalink / raw) To: Len Brown; +Cc: akpm, linux-acpi, jordan.crouse, luming.yu I have to admit, this is not what I would have had. Len Brown wrote: >On Tuesday 15 August 2006 01:37, akpm@osdl.org wrote: > > >>From: William Morrrow <william.morrow@amd.com> >> >>This was discovered on a broken BIOS that simply returned from its suspend >>procedure, appearing to the OS as a failed S3 attempt. >> >>It is possible to invoke the protected mode register restore routine (which >>would normally restore the sysenter registers) when the bios returns from >>S3. This has no effect on a correctly running system and repairs the >>damage from broken BIOS. >> >> > >Where and why does acpi_enter_sleep_state() bail out? > > Where? It does not actually bail out, it just returns do_suspend_lowlevel as if it did sleep. It did sleep, but did not restart and return the call by the accepted software mechanism. The machine resumes execution in protected mode with the original machine state largely intact, but it fails to restore the sysenter/exit registers. Why? It is a sort of tortured bios. AMD shutdown the design center where the development was occurring. Only one bios developer is left (not me), and he is over-committed. Fixing our bios is not likely, since the facility will be closed before the mod can be created, tested, and deployed. I developed this fix as a demonstration that the S3 can work in linux. The "fix" makes error recovery stronger, and so it was suggested to push the fix since it can recover this and other more serious errors. There was concern that covering errors was not a good idea in the first place, but in the end - the case for more reliability was stronger. >Does S3 work on windows on this box? > > Yes (XP). This is the excuse - and is the force which is driving this solution. There is no test group to re-test all of the ACPI aware OSs S3 recovery. So if they change (correct) the S3 strategy, it cant be well tested here. Since it was tested in the errant form and appeared to pass (on XP), there is considerable pressure to not correct the bios. >How does the machine fail without this patch -- does it crash or hang on entering S3? >Does the patch below imply that we've got the return from acpi_enter_sleep_state >wrong no matter why it returns? > > The machine goes into and out of S3 normally, and then flips out doing double faults on the first sysenter since these msrs are zeroed and not restored. >thanks, >-Len > > If there are any other materials you need to evaluate this change, let me know. Thanks for your attention! morrow >>Signed-off-by: William Morrow <william.morrow@amd.com> >>Signed-off-by: Jordan Crouse <jordan.crouse@amd.com> >>Cc: "Yu, Luming" <luming.yu@intel.com> >>Cc: "Brown, Len" <len.brown@intel.com> >>Signed-off-by: Andrew Morton <akpm@osdl.org> >>--- >> >> arch/i386/kernel/acpi/wakeup.S | 5 ++++- >> 1 file changed, 4 insertions(+), 1 deletion(-) >> >>diff -puN arch/i386/kernel/acpi/wakeup.S~acpi-correctly-recover-from-a-failed-s3-attempt arch/i386/kernel/acpi/wakeup.S >>--- a/arch/i386/kernel/acpi/wakeup.S~acpi-correctly-recover-from-a-failed-s3-attempt >>+++ a/arch/i386/kernel/acpi/wakeup.S >>@@ -292,7 +292,10 @@ ENTRY(do_suspend_lowlevel) >> pushl $3 >> call acpi_enter_sleep_state >> addl $4, %esp >>- ret >>+ >>+# In case of S3 failure, we'll emerge here. Jump >>+# to ret_point to recover >>+ jmp ret_point >> .p2align 4,,7 >> ret_point: >> call restore_registers >>_ >>- >>To unsubscribe from this list: send the line "unsubscribe linux-acpi" 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] 5+ messages in thread
* Re: [patch 13/14] ACPI: Correctly recover from a failed S3 attempt 2006-08-16 17:58 ` William Morrow @ 2006-08-16 21:55 ` Len Brown 0 siblings, 0 replies; 5+ messages in thread From: Len Brown @ 2006-08-16 21:55 UTC (permalink / raw) To: William Morrow; +Cc: Len Brown, akpm, linux-acpi, jordan.crouse, luming.yu On Wednesday 16 August 2006 13:58, William Morrow wrote: > >>This was discovered on a broken BIOS that simply returned from its suspend > >>procedure, appearing to the OS as a failed S3 attempt. > > [ acpi_enter_sleep_state() ]... > does not actually bail out, it just returns do_suspend_lowlevel as if > it did sleep. It did sleep, but did not restart and return the call by the accepted > software mechanism. > The machine resumes execution in protected mode with the original > machine state largely intact, but it fails to restore the sysenter/exit registers. > >Does S3 work on windows on this box? > > > Yes (XP). This is the excuse - and is the force which is driving this solution. > There is no test group to re-test all of the ACPI aware OSs S3 recovery. > So if they change (correct) the S3 strategy, it cant be well tested > here. Since it was tested in the errant form and appeared to pass (on XP), there is > considerable pressure to not correct the bios. William, This is an excellent discovery. It is proof that Windows handles this deviant case -- and so if we fix Linux to handle it, then we may fix other failing systems. thanks, -Len ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [patch 13/14] ACPI: Correctly recover from a failed S3 attempt 2006-08-15 5:37 [patch 13/14] ACPI: Correctly recover from a failed S3 attempt akpm 2006-08-16 4:27 ` Len Brown @ 2006-08-16 22:00 ` Len Brown 1 sibling, 0 replies; 5+ messages in thread From: Len Brown @ 2006-08-16 22:00 UTC (permalink / raw) To: akpm; +Cc: linux-acpi, william.morrow, jordan.crouse, luming.yu Applied. This may be the start of unlocking the door to a new class of S3 resume failures. thanks, -Len On Tuesday 15 August 2006 01:37, akpm@osdl.org wrote: > From: William Morrrow <william.morrow@amd.com> > > This was discovered on a broken BIOS that simply returned from its suspend > procedure, appearing to the OS as a failed S3 attempt. > > It is possible to invoke the protected mode register restore routine (which > would normally restore the sysenter registers) when the bios returns from > S3. This has no effect on a correctly running system and repairs the > damage from broken BIOS. > > Signed-off-by: William Morrow <william.morrow@amd.com> > Signed-off-by: Jordan Crouse <jordan.crouse@amd.com> > Cc: "Yu, Luming" <luming.yu@intel.com> > Cc: "Brown, Len" <len.brown@intel.com> > Signed-off-by: Andrew Morton <akpm@osdl.org> > --- > > arch/i386/kernel/acpi/wakeup.S | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff -puN arch/i386/kernel/acpi/wakeup.S~acpi-correctly-recover-from-a-failed-s3-attempt arch/i386/kernel/acpi/wakeup.S > --- a/arch/i386/kernel/acpi/wakeup.S~acpi-correctly-recover-from-a-failed-s3-attempt > +++ a/arch/i386/kernel/acpi/wakeup.S > @@ -292,7 +292,10 @@ ENTRY(do_suspend_lowlevel) > pushl $3 > call acpi_enter_sleep_state > addl $4, %esp > - ret > + > +# In case of S3 failure, we'll emerge here. Jump > +# to ret_point to recover > + jmp ret_point > .p2align 4,,7 > ret_point: > call restore_registers > _ > - > To unsubscribe from this list: send the line "unsubscribe linux-acpi" 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] 5+ messages in thread
end of thread, other threads:[~2006-08-16 21:59 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2006-08-15 5:37 [patch 13/14] ACPI: Correctly recover from a failed S3 attempt akpm 2006-08-16 4:27 ` Len Brown 2006-08-16 17:58 ` William Morrow 2006-08-16 21:55 ` Len Brown 2006-08-16 22:00 ` Len Brown
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).