diff options
Diffstat (limited to 'roms/u-boot/arch/x86/include/asm/acpi/sleepstates.asl')
-rw-r--r-- | roms/u-boot/arch/x86/include/asm/acpi/sleepstates.asl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/roms/u-boot/arch/x86/include/asm/acpi/sleepstates.asl b/roms/u-boot/arch/x86/include/asm/acpi/sleepstates.asl new file mode 100644 index 000000000..31aa69a57 --- /dev/null +++ b/roms/u-boot/arch/x86/include/asm/acpi/sleepstates.asl @@ -0,0 +1,16 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Copyright (C) 2007-2009 coresystems GmbH + * Copyright (C) 2016 Bin Meng <bmeng.cn@gmail.com> + * + * Modified from coreboot src/soc/intel/baytrail/acpi/sleepstates.asl + */ + +Name(\_S0, Package(){0x0,0x0,0x0,0x0}) +#if !IS_ENABLED(CONFIG_HAVE_ACPI_RESUME) +Name(\_S1, Package(){0x1,0x0,0x0,0x0}) +#else +Name(\_S3, Package(){0x5,0x0,0x0,0x0}) +#endif +Name(\_S4, Package(){0x6,0x0,0x0,0x0}) +Name(\_S5, Package(){0x7,0x0,0x0,0x0}) |