payloads/edk2: Disable the CPU Timer Lib unless supported
[coreboot.git] / src / mainboard / roda / rk9 / acpi / platform.asl
blob00ac2735edbbe61a3095057e62ff5f77d5e75c25
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         // TODO: Return Arg0 as second value if S-Arg0 was entered
35         // before.
37         Return(Package(){0,0})
40 /* System Bus */
42 Scope(\_SB)
44         /* This method is placed on the top level, so we can make sure it's the
45          * first executed _INI method.
46          */
47         Method(_INI, 0)
48         {
49                 /* The DTS data in NVS is probably not up to date.
50                  * Update temperature values and make sure AP thermal
51                  * interrupts can happen
52                  */
54                 // TRAP(71) // TODO
56                 \GOS()
58                 /* SMM power state and C4-on-C3 settings need to be updated */
59                 // TRAP(43) // TODO
60         }