mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
d9434a17e5
Add common x86 ASL files, taken from coreboot. Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Wolfgang Wallner <wolfgang.wallner@br-automation.com>
16 lines
466 B
Text
16 lines
466 B
Text
/* 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})
|