summaryrefslogtreecommitdiffstats
path: root/arch/x86
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2016-05-11 07:45:02 -0700
committerBin Meng <bmeng.cn@gmail.com>2016-05-23 15:18:00 +0800
commit644a76742c85ae8bbdd9fcd00d06b7099015d593 (patch)
tree0efd76439c6a932d1163d717ce0c4dce6cdee416 /arch/x86
parentd19c90747d8975a523489f863984c521ae72ce39 (diff)
downloadblackbird-obmc-uboot-644a76742c85ae8bbdd9fcd00d06b7099015d593.tar.gz
blackbird-obmc-uboot-644a76742c85ae8bbdd9fcd00d06b7099015d593.zip
x86: Use high_table_malloc() for tables passing to SeaBIOS
Now that we already reserved high memory for configuration tables, call high_table_malloc() to allocate tables from the region. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86')
-rw-r--r--arch/x86/lib/tables.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/x86/lib/tables.c b/arch/x86/lib/tables.c
index 1213a9cd2b..f92111e4c8 100644
--- a/arch/x86/lib/tables.c
+++ b/arch/x86/lib/tables.c
@@ -5,7 +5,6 @@
*/
#include <common.h>
-#include <malloc.h>
#include <asm/sfi.h>
#include <asm/mpspec.h>
#include <asm/smbios.h>
@@ -81,9 +80,8 @@ void write_tables(void)
#ifdef CONFIG_SEABIOS
table_size = rom_table_end - rom_table_start;
- high_table = (u32)memalign(ROM_TABLE_ALIGN, table_size);
+ high_table = (u32)high_table_malloc(table_size);
if (high_table) {
- memset((void *)high_table, 0, table_size);
table_write_funcs[i](high_table);
cfg_tables[i].start = high_table;
OpenPOWER on IntegriCloud