2007-12-27 18:08:28

by Robert Hancock

[permalink] [raw]
Subject: Re: Suspend code ordering (again)

Rafael J. Wysocki wrote:
> On Wednesday, 26 of December 2007, Linus Torvalds wrote:
>> On Tue, 25 Dec 2007, Rafael J. Wysocki wrote:
>>> the ACPI specification between versions 1.0x and 2.0. Namely, while ACPI
>>> 2.0 and later wants us to put devices into low power states before calling
>>> _PTS, ACPI 1.0x wants us to do that after calling _PTS. Since we're following
>>> the 2.0 and later specifications right now, we're not doing the right thing for
>>> the (strictly) ACPI 1.0x-compliant systems.
>>>
>>> We ought to be able to fix things on the high level, by calling _PTS earlier on
>>> systems that claim to be ACPI 1.0x-compliant. That will require us to modify
>>> the generic susped code quite a bit and will need to be tested for some time.
>> That's insane. Are you really saying that ACPI wants totally different
>> orderings for different versions of the spec?
>
> Yes, I am.
>
>> And does Windows really do that?
>
> I don't know.
>
>> Please don't make lots of modifications to the generic suspend code. The
>> only thing that is worth doing is to just have a firmware callback before
>> the "device_suspend()" thing (and then on a ACPI-1.0 system, call _PTS
>> *there*), and on an ACPI-2.0 system, call _PTS *after* device_suspend().
>
> Yes, that's what I'm going to do, but I need to untangle some ACPI code for
> this purpose.
>
>> Still, the fact is, some (most, I think) drivers *should* put themselves
>> into D3 only in "late_suspend()", so if ACPI-2.0 really expects _PTS to be
>> called after that, we're just screwed.
>
> Well, section 9.1.6 of ACPI 2.0 specifies the suspend ordering directly and
> says exactly that _PTS is to be executed after putting devices into respective
> D states.

I would not take those sections as gospel, they're really an example
only. It's quite possible that Windows does not follow that ordering.

Also, as was pointed out, pre-Vista versions of Windows follow ACPI 1.0
and Vista follows 3.0, so 2.0 doesn't really matter since BIOS people
won't test against it. 1.0 specifies that _PTS is to be called before
suspending devices and 3.0 says that the AML must not depend on any
specific device power state, so in both cases it should be safe to call
_PTS before suspending, no?

--
Robert Hancock Saskatoon, SK, Canada
To email, remove "nospam" from [email protected]
Home Page: http://www.roberthancock.com/


2007-12-27 19:40:54

by Rafael J. Wysocki

[permalink] [raw]
Subject: Re: Suspend code ordering (again)

On Thursday, 27 of December 2007, Robert Hancock wrote:
> Rafael J. Wysocki wrote:
> > On Wednesday, 26 of December 2007, Linus Torvalds wrote:
> >> On Tue, 25 Dec 2007, Rafael J. Wysocki wrote:
> >>> the ACPI specification between versions 1.0x and 2.0. Namely, while ACPI
> >>> 2.0 and later wants us to put devices into low power states before calling
> >>> _PTS, ACPI 1.0x wants us to do that after calling _PTS. Since we're following
> >>> the 2.0 and later specifications right now, we're not doing the right thing for
> >>> the (strictly) ACPI 1.0x-compliant systems.
> >>>
> >>> We ought to be able to fix things on the high level, by calling _PTS earlier on
> >>> systems that claim to be ACPI 1.0x-compliant. That will require us to modify
> >>> the generic susped code quite a bit and will need to be tested for some time.
> >> That's insane. Are you really saying that ACPI wants totally different
> >> orderings for different versions of the spec?
> >
> > Yes, I am.
> >
> >> And does Windows really do that?
> >
> > I don't know.
> >
> >> Please don't make lots of modifications to the generic suspend code. The
> >> only thing that is worth doing is to just have a firmware callback before
> >> the "device_suspend()" thing (and then on a ACPI-1.0 system, call _PTS
> >> *there*), and on an ACPI-2.0 system, call _PTS *after* device_suspend().
> >
> > Yes, that's what I'm going to do, but I need to untangle some ACPI code for
> > this purpose.
> >
> >> Still, the fact is, some (most, I think) drivers *should* put themselves
> >> into D3 only in "late_suspend()", so if ACPI-2.0 really expects _PTS to be
> >> called after that, we're just screwed.
> >
> > Well, section 9.1.6 of ACPI 2.0 specifies the suspend ordering directly and
> > says exactly that _PTS is to be executed after putting devices into respective
> > D states.
>
> I would not take those sections as gospel, they're really an example
> only. It's quite possible that Windows does not follow that ordering.
>
> Also, as was pointed out, pre-Vista versions of Windows follow ACPI 1.0
> and Vista follows 3.0, so 2.0 doesn't really matter since BIOS people
> won't test against it. 1.0 specifies that _PTS is to be called before
> suspending devices and 3.0 says that the AML must not depend on any
> specific device power state, so in both cases it should be safe to call
> _PTS before suspending, no?

Well, IMO, if we take one option only (whichever that is) and there are systems
that follow the other one, they will likely break.

Apart from this, there are BIOSes that openly claim ACPI 2.0 support (for
example, the one in my HP nx6325 does that) and they may actually prefer the
post-ACPI-1.0 ordering even if they work with the pre-ACPI-2.0 one.

Greetings,
Rafael

2007-12-28 00:26:29

by Robert Hancock

[permalink] [raw]
Subject: Re: Suspend code ordering (again)

Rafael J. Wysocki wrote:
>> Also, as was pointed out, pre-Vista versions of Windows follow ACPI 1.0
>> and Vista follows 3.0, so 2.0 doesn't really matter since BIOS people
>> won't test against it. 1.0 specifies that _PTS is to be called before
>> suspending devices and 3.0 says that the AML must not depend on any
>> specific device power state, so in both cases it should be safe to call
>> _PTS before suspending, no?
>
> Well, IMO, if we take one option only (whichever that is) and there are systems
> that follow the other one, they will likely break.
>
> Apart from this, there are BIOSes that openly claim ACPI 2.0 support (for
> example, the one in my HP nx6325 does that) and they may actually prefer the
> post-ACPI-1.0 ordering even if they work with the pre-ACPI-2.0 one.

I doubt they would prefer the later ordering in any way that matters, if
the Windows version they were designed for uses the earlier ordering.

It would be best if somebody could manage to find out what ordering
Windows XP (and Windows Vista, for good measure) actually use, then we
could just use that. Virtual machine trickery might be an option - the
only complication being that it'll be using the DSDT for the fake
machine and not the real one..

--
Robert Hancock Saskatoon, SK, Canada
To email, remove "nospam" from [email protected]
Home Page: http://www.roberthancock.com/

2007-12-28 05:44:16

by Linus Torvalds

[permalink] [raw]
Subject: Re: Suspend code ordering (again)



On Thu, 27 Dec 2007, Robert Hancock wrote:
>
> I doubt they would prefer the later ordering in any way that matters, if the
> Windows version they were designed for uses the earlier ordering.

Well, I wouldn't say it's abotu "preferring" one over the other. It's very
possible that the BIOS writers were *intending* to prefer ACPI 2.0, and it
may even be likely that they thought that they wrote it that way, but the
real issue is that it has apparently never ever been *tested* that way.

So yes, maybe the vendors actually thought they were a good ACPI-2.0
implementation, but if Windows doesn't do the ordering that the 2.0 spec
expects, then that is pretty much just a theoretical thing.

But yeah, it would be really nice to have this verified some way. Somebody
must already know (whether it's a VM person or a BIOS writer, and whether
they'd tell us, is obviously another issue).

Linus

2008-01-08 03:02:56

by Shaohua Li

[permalink] [raw]
Subject: Re: Suspend code ordering (again)


On Fri, 2007-12-28 at 08:25 +0800, Robert Hancock wrote:
> Rafael J. Wysocki wrote:
> >> Also, as was pointed out, pre-Vista versions of Windows follow ACPI
> 1.0
> >> and Vista follows 3.0, so 2.0 doesn't really matter since BIOS
> people
> >> won't test against it. 1.0 specifies that _PTS is to be called
> before
> >> suspending devices and 3.0 says that the AML must not depend on
> any
> >> specific device power state, so in both cases it should be safe to
> call
> >> _PTS before suspending, no?
> >
> > Well, IMO, if we take one option only (whichever that is) and there
> are systems
> > that follow the other one, they will likely break.
> >
> > Apart from this, there are BIOSes that openly claim ACPI 2.0 support
> (for
> > example, the one in my HP nx6325 does that) and they may actually
> prefer the
> > post-ACPI-1.0 ordering even if they work with the pre-ACPI-2.0 one.
>
> I doubt they would prefer the later ordering in any way that matters,
> if
> the Windows version they were designed for uses the earlier ordering.
>
> It would be best if somebody could manage to find out what ordering
> Windows XP (and Windows Vista, for good measure) actually use, then
> we
> could just use that. Virtual machine trickery might be an option -
> the
> only complication being that it'll be using the DSDT for the fake
> machine and not the real one..
I modified Qemu and use it to observe how winxp does suspend/resume. So
far, I just get some data for s4 suspend. I did have some interesting
finding.

1. xp seems not save pci config space. Or it appears just save config
PCICMD.
2. the order winxp does looks like
a. save config (PCICMD), put device to D3 (it appears only for ne2000
NIC)
b. _PTS
c. write mem to disk
d. write ACPI PM1_control register, then system shutdown
3. xp write ACPI GBL_EN bit just after _PTS (for both S4/S5), don't know
why

Attached is the log winxp does s4 suspend, it only includes pci config
read/write and ACPI register read/write.

I managed to make xp enter S3, but fails, so can't get the data for S3
so far. Anybody has other ideas which need to verify winxp, pls let me
know.

Thanks,
Shaohua


Attachments:
xplog (2.00 kB)