1/* 2 * Copyright (c) 2017 Intel Corporation 3 * 4 * Partially based on platform.asl for other x86 platforms 5 * 6 * SPDX-License-Identifier: GPL-2.0+ 7 */ 8 9#include <asm/acpi/statdef.asl> 10 11/* 12 * The _PTS method (Prepare To Sleep) is called before the OS is 13 * entering a sleep state. The sleep state number is passed in Arg0. 14 */ 15Method(_PTS, 1) 16{ 17} 18 19/* The _WAK method is called on system wakeup */ 20Method(_WAK, 1) 21{ 22 Return (Package() {0, 0}) 23} 24 25/* ACPI global NVS */ 26#include "global_nvs.asl" 27 28Scope (\_SB) 29{ 30 #include "southcluster.asl" 31} 32