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