Skip to content
Snippets Groups Projects
Commit 256df1e1 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Bin Meng
Browse files

x86: edison: Bring minimal ACPI support to the board


This board is based on Intel Tangier SoC (Intel Merrifield platform)
and may utilize ACPI powerfulness.

Bring minimum support by appending initial DSDT table for it.

Note, the addresses for generated tables are carefully chosen to avoid
any conflicts with existing shadowed BIOS data. The user have somewhat
like ~31 kB available for compiled ACPI tables that ought to be enough.

Reviewed-by: default avatarBin Meng <bmeng.cn@gmail.com>
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
parent 39665bee
No related branches found
No related tags found
No related merge requests found
dsdt.aml
dsdt.asl.tmp
dsdt.c
...@@ -15,6 +15,12 @@ config SYS_CONFIG_NAME ...@@ -15,6 +15,12 @@ config SYS_CONFIG_NAME
config SYS_TEXT_BASE config SYS_TEXT_BASE
default 0x01101000 default 0x01101000
config ROM_TABLE_ADDR
default 0x0e4500
config ROM_TABLE_SIZE
default 0x007b00
config BOARD_SPECIFIC_OPTIONS # dummy config BOARD_SPECIFIC_OPTIONS # dummy
def_bool y def_bool y
select X86_LOAD_FROM_32_BIT select X86_LOAD_FROM_32_BIT
......
...@@ -5,3 +5,4 @@ ...@@ -5,3 +5,4 @@
# #
obj-y += start.o edison.o obj-y += start.o edison.o
obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt.o
/*
* Copyright (c) 2017 Intel Corporation
*
* Partially based on dsdt.asl for other x86 boards
*
* SPDX-License-Identifier: GPL-2.0+
*/
DefinitionBlock("dsdt.aml", "DSDT", 2, "U-BOOT", "U-BOOTBL", 0x00010000)
{
/* platform specific */
#include <asm/arch/acpi/platform.asl>
}
...@@ -9,6 +9,9 @@ ...@@ -9,6 +9,9 @@
#include <asm/ibmpc.h> #include <asm/ibmpc.h>
/* ACPI */
#define CONFIG_LAST_STAGE_INIT
/* Boot */ /* Boot */
#define CONFIG_BOOTCOMMAND "run bootcmd" #define CONFIG_BOOTCOMMAND "run bootcmd"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment