mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 03:08:31 +00:00
411898dc87
The supported sleep states are generic on Intel processors. Move the ASL definition to the common place. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
15 lines
427 B
Text
15 lines
427 B
Text
/*
|
|
* 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
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
Name(\_S0, Package() {0x0, 0x0, 0x0, 0x0})
|
|
#ifdef CONFIG_HAVE_ACPI_RESUME
|
|
Name(\_S3, Package() {0x5, 0x0, 0x0, 0x0})
|
|
#endif
|
|
Name(\_S4, Package() {0x6, 0x0, 0x0, 0x0})
|
|
Name(\_S5, Package() {0x7, 0x0, 0x0, 0x0})
|