diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2017-04-21 07:24:36 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2017-05-17 17:11:46 +0800 |
commit | e76bf38f180b0c9325b17506f1518329d82cbed8 (patch) | |
tree | 8ce67b116d477a575794a7d391d71ba8085571fd /arch/x86/include/asm/tables.h | |
parent | 2b2d666f9caca189e4014f8e23088b0afc360e22 (diff) | |
download | u-boot-e76bf38f180b0c9325b17506f1518329d82cbed8.tar.gz u-boot-e76bf38f180b0c9325b17506f1518329d82cbed8.tar.xz u-boot-e76bf38f180b0c9325b17506f1518329d82cbed8.zip |
x86: acpi: Add one API to find OS wakeup vector
This adds one API acpi_find_wakeup_vector() to locate OS wakeup
vector from the ACPI FACS table, to be used in the S3 boot path.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Tested-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'arch/x86/include/asm/tables.h')
-rw-r--r-- | arch/x86/include/asm/tables.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/include/asm/tables.h b/arch/x86/include/asm/tables.h index d1b2388021..9e8208ba2b 100644 --- a/arch/x86/include/asm/tables.h +++ b/arch/x86/include/asm/tables.h @@ -15,6 +15,7 @@ * PIRQ routing table, Multi-Processor table and ACPI table. */ #define ROM_TABLE_ADDR 0xf0000 +#define ROM_TABLE_END 0xfffff #define ROM_TABLE_ALIGN 1024 |