2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2016-05-07 14:46:31 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <asm/acpi/statdef.asl>
|
|
|
|
#include <asm/arch/iomap.h>
|
|
|
|
#include <asm/arch/irq.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The _PTS method (Prepare To Sleep) is called before the OS is
|
|
|
|
* entering a sleep state. The sleep state number is passed in Arg0.
|
|
|
|
*/
|
|
|
|
Method(_PTS, 1)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The _WAK method is called on system wakeup */
|
|
|
|
Method(_WAK, 1)
|
|
|
|
{
|
|
|
|
Return (Package() {0, 0})
|
|
|
|
}
|
|
|
|
|
2016-06-17 09:13:16 +00:00
|
|
|
/* ACPI global NVS */
|
|
|
|
#include "global_nvs.asl"
|
|
|
|
|
2016-05-07 14:46:31 +00:00
|
|
|
/* TODO: add CPU ASL support */
|
|
|
|
|
|
|
|
Scope (\_SB)
|
|
|
|
{
|
|
|
|
#include "southcluster.asl"
|
2016-05-11 14:45:11 +00:00
|
|
|
|
|
|
|
/* ACPI devices */
|
|
|
|
#include "gpio.asl"
|
2016-05-07 14:46:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Chipset specific sleep states */
|
2017-10-19 01:21:00 +00:00
|
|
|
#include <asm/acpi/sleepstates.asl>
|