payloads/edk2: Disable the CPU Timer Lib unless supported
[coreboot.git] / src / mainboard / lenovo / t60 / acpi / platform.asl
blob50da033b2d4a03204d9e0cd179c0e2b07d6b7f47
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         \_SB.PCI0.LPCB.EC.MUTE(1)
10         \_SB.PCI0.LPCB.EC.USBP(0)
11         \_SB.PCI0.LPCB.EC.RADI(0)
14 /* The _WAK method is called on system wakeup */
16 Method(_WAK,1)
18         /* Wake the HKEY to init BT/WWAN */
19         \_SB.PCI0.LPCB.EC.HKEY.WAKE (Arg0)
21         // CPU specific part
23         // Notify PCI Express slots in case a card
24         // was inserted while a sleep state was active.
26         // Are we going to S3?
27         If (Arg0 == 3) {
28                 // ..
29         }
31         // Are we going to S4?
32         If (Arg0 == 4) {
33                 // ..
34         }
36         // TODO: Windows XP SP2 P-State restore
38         Return(Package(){0,0})
41 /* System Bus */
43 Scope(\_SB)
45         /* This method is placed on the top level, so we can make sure it's the
46          * first executed _INI method.
47          */
48         Method(_INI, 0)
49         {
50                 /* The DTS data in NVS is probably not up to date.
51                  * Update temperature values and make sure AP thermal
52                  * interrupts can happen
53                  */
55                 // TRAP(71) // TODO
57                 \GOS()
59                 /* SMM power state and C4-on-C3 settings need to be updated */
60                 // TRAP(43) // TODO
61         }