blob: 14b15cf38917d2519730b5dfb7558b60156b19c9 [file] [log] [blame]
Bin Meng5e2400e2015-04-24 18:10:04 +08001/*
2 * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
Simon Glass6388e352015-04-28 20:25:10 -06008#include <asm/sfi.h>
Bin Meng07545d82015-06-23 12:18:52 +08009#include <asm/mpspec.h>
Bin Meng721e9922015-10-12 05:23:41 -070010#include <asm/smbios.h>
Bin Meng5e2400e2015-04-24 18:10:04 +080011#include <asm/tables.h>
Saket Sinha867bcb62015-08-22 12:20:55 +053012#include <asm/acpi_table.h>
Bin Meng5e2400e2015-04-24 18:10:04 +080013
14u8 table_compute_checksum(void *v, int len)
15{
16 u8 *bytes = v;
17 u8 checksum = 0;
18 int i;
19
20 for (i = 0; i < len; i++)
21 checksum -= bytes[i];
22
23 return checksum;
24}
25
Bin Meng7f5df8d2015-06-23 12:18:51 +080026void table_fill_string(char *dest, const char *src, size_t n, char pad)
27{
28 int start, len;
29 int i;
30
31 strncpy(dest, src, n);
32
33 /* Fill the remaining bytes with pad */
34 len = strlen(src);
35 start = len < n ? len : n;
36 for (i = start; i < n; i++)
37 dest[i] = pad;
38}
39
Bin Meng5e2400e2015-04-24 18:10:04 +080040void write_tables(void)
41{
42 u32 __maybe_unused rom_table_end = ROM_TABLE_ADDR;
43
Bin Mengcc4c8ac2015-04-28 18:37:03 +080044#ifdef CONFIG_GENERATE_PIRQ_TABLE
Bin Meng5e2400e2015-04-24 18:10:04 +080045 rom_table_end = write_pirq_routing_table(rom_table_end);
46 rom_table_end = ALIGN(rom_table_end, 1024);
47#endif
Simon Glass6388e352015-04-28 20:25:10 -060048#ifdef CONFIG_GENERATE_SFI_TABLE
49 rom_table_end = write_sfi_table(rom_table_end);
50 rom_table_end = ALIGN(rom_table_end, 1024);
51#endif
Bin Meng07545d82015-06-23 12:18:52 +080052#ifdef CONFIG_GENERATE_MP_TABLE
53 rom_table_end = write_mp_table(rom_table_end);
54 rom_table_end = ALIGN(rom_table_end, 1024);
55#endif
Saket Sinha867bcb62015-08-22 12:20:55 +053056#ifdef CONFIG_GENERATE_ACPI_TABLE
57 rom_table_end = write_acpi_tables(rom_table_end);
58 rom_table_end = ALIGN(rom_table_end, 1024);
59#endif
Bin Meng721e9922015-10-12 05:23:41 -070060#ifdef CONFIG_GENERATE_SMBIOS_TABLE
61 rom_table_end = write_smbios_table(rom_table_end);
62 rom_table_end = ALIGN(rom_table_end, 1024);
63#endif
Bin Meng5e2400e2015-04-24 18:10:04 +080064}