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