2015-04-24 10:10:04 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2015-04-29 02:25:10 +00:00
|
|
|
#include <asm/sfi.h>
|
2015-06-23 04:18:52 +00:00
|
|
|
#include <asm/mpspec.h>
|
2015-10-12 12:23:41 +00:00
|
|
|
#include <asm/smbios.h>
|
2015-04-24 10:10:04 +00:00
|
|
|
#include <asm/tables.h>
|
x86: Generate a valid ACPI table
Implement write_acpi_table() to create a minimal working ACPI table.
This includes writing FACS, XSDT, RSDP, FADT, MCFG, MADT, DSDT & SSDT
ACPI table entries.
Use a Kconfig option GENERATE_ACPI_TABLE to tell U-Boot whether we need
actually write the APCI table just like we did for PIRQ routing, MP table
and SFI tables. With ACPI table existence, linux kernel gets control of
power management, thermal management, configuration management and
monitoring in hardware.
Signed-off-by: Saket Sinha <saket.sinha89@gmail.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Tidied up whitespace and aligned some tabs:
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-08-22 06:50:55 +00:00
|
|
|
#include <asm/acpi_table.h>
|
2015-04-24 10:10:04 +00:00
|
|
|
|
|
|
|
u8 table_compute_checksum(void *v, int len)
|
|
|
|
{
|
|
|
|
u8 *bytes = v;
|
|
|
|
u8 checksum = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
checksum -= bytes[i];
|
|
|
|
|
|
|
|
return checksum;
|
|
|
|
}
|
|
|
|
|
2015-06-23 04:18:51 +00:00
|
|
|
void table_fill_string(char *dest, const char *src, size_t n, char pad)
|
|
|
|
{
|
|
|
|
int start, len;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
strncpy(dest, src, n);
|
|
|
|
|
|
|
|
/* Fill the remaining bytes with pad */
|
|
|
|
len = strlen(src);
|
|
|
|
start = len < n ? len : n;
|
|
|
|
for (i = start; i < n; i++)
|
|
|
|
dest[i] = pad;
|
|
|
|
}
|
|
|
|
|
2015-04-24 10:10:04 +00:00
|
|
|
void write_tables(void)
|
|
|
|
{
|
|
|
|
u32 __maybe_unused rom_table_end = ROM_TABLE_ADDR;
|
|
|
|
|
2015-04-28 10:37:03 +00:00
|
|
|
#ifdef CONFIG_GENERATE_PIRQ_TABLE
|
2015-04-24 10:10:04 +00:00
|
|
|
rom_table_end = write_pirq_routing_table(rom_table_end);
|
|
|
|
rom_table_end = ALIGN(rom_table_end, 1024);
|
|
|
|
#endif
|
2015-04-29 02:25:10 +00:00
|
|
|
#ifdef CONFIG_GENERATE_SFI_TABLE
|
|
|
|
rom_table_end = write_sfi_table(rom_table_end);
|
|
|
|
rom_table_end = ALIGN(rom_table_end, 1024);
|
|
|
|
#endif
|
2015-06-23 04:18:52 +00:00
|
|
|
#ifdef CONFIG_GENERATE_MP_TABLE
|
|
|
|
rom_table_end = write_mp_table(rom_table_end);
|
|
|
|
rom_table_end = ALIGN(rom_table_end, 1024);
|
|
|
|
#endif
|
x86: Generate a valid ACPI table
Implement write_acpi_table() to create a minimal working ACPI table.
This includes writing FACS, XSDT, RSDP, FADT, MCFG, MADT, DSDT & SSDT
ACPI table entries.
Use a Kconfig option GENERATE_ACPI_TABLE to tell U-Boot whether we need
actually write the APCI table just like we did for PIRQ routing, MP table
and SFI tables. With ACPI table existence, linux kernel gets control of
power management, thermal management, configuration management and
monitoring in hardware.
Signed-off-by: Saket Sinha <saket.sinha89@gmail.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Tidied up whitespace and aligned some tabs:
Signed-off-by: Simon Glass <sjg@chromium.org>
2015-08-22 06:50:55 +00:00
|
|
|
#ifdef CONFIG_GENERATE_ACPI_TABLE
|
|
|
|
rom_table_end = write_acpi_tables(rom_table_end);
|
|
|
|
rom_table_end = ALIGN(rom_table_end, 1024);
|
|
|
|
#endif
|
2015-10-12 12:23:41 +00:00
|
|
|
#ifdef CONFIG_GENERATE_SMBIOS_TABLE
|
|
|
|
rom_table_end = write_smbios_table(rom_table_end);
|
|
|
|
rom_table_end = ALIGN(rom_table_end, 1024);
|
|
|
|
#endif
|
2015-04-24 10:10:04 +00:00
|
|
|
}
|