1 /* SPDX-License-Identifier: GPL-2.0-only */
3 /* Enable ACPI _SWS methods */
4 #include <soc/intel/common/acpi/acpi_wake_source.asl>
6 Name (_S0, Package () // mandatory system state
11 Name (_S5, Package () // mandatory system state
13 0x07, 0x00, 0x00, 0x00
17 OperationRegion (DBG0, SystemIO, 0x80, 0x02)
18 Field (DBG0, ByteAcc, Lock, Preserve)
24 /* Virtual UART on 0x3f8 */
27 Name(_HID, EisaId("PNP0501"))
30 Name(_CRS, ResourceTemplate() {
31 IO(Decode16, 0x03F8, 0x03F8, 0x00, 0x08)
38 * The _PTS method (Prepare To Sleep) is called before the OS is
39 * entering a sleep state. The sleep state number is passed in Arg0
46 /* The _WAK method is called on system wakeup */
50 Return (Package (){ 0, 0 })