1/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
4 */
5
6#include <asm/acpi/statdef.asl>
7#include <asm/arch/iomap.h>
8#include <asm/arch/irq.h>
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
27/* TODO: add CPU ASL support */
28
29Scope (\_SB)
30{
31	#include "southcluster.asl"
32
33	/* ACPI devices */
34	#include "gpio.asl"
35}
36
37/* Chipset specific sleep states */
38#include <asm/acpi/sleepstates.asl>
39