payloads/edk2: Disable the CPU Timer Lib unless supported
[coreboot.git] / src / mainboard / intel / d945gclf / acpi / platform.asl
blobcf73fc1d6aef4ccbbaf0f0d34914ba67c645f4de
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 /* The _PTS method (Prepare To Sleep) is called before the OS is
4  * entering a sleep state. The sleep state number is passed in Arg0
5  */
7 Method(_PTS,1)
9         // Call a trap so SMI can prepare for Sleep as well.
10         // TRAP(0x55)
13 /* The _WAK method is called on system wakeup */
15 Method(_WAK,1)
17         // CPU specific part
19         // Notify PCI Express slots in case a card
20         // was inserted while a sleep state was active.
22         // Are we going to S3?
23         If (Arg0 == 3) {
24                 // ..
25         }
27         // Are we going to S4?
28         If (Arg0 == 4) {
29                 // ..
30         }
32         // TODO: Windows XP SP2 P-State restore
34         Return(Package(){0,0})