blob: 9f0d9285216fdb6c72d2d075dbc6f5b82270ba70 [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
Bin Mengef4d0a52016-02-27 22:58:01 -080014/**
15 * Function prototype to write a specific configuration table
16 *
17 * @addr: start address to write the table
18 * @return: end address of the table
19 */
20typedef u32 (*table_write)(u32 addr);
21
22static table_write table_write_funcs[] = {
23#ifdef CONFIG_GENERATE_PIRQ_TABLE
24 write_pirq_routing_table,
25#endif
26#ifdef CONFIG_GENERATE_SFI_TABLE
27 write_sfi_table,
28#endif
29#ifdef CONFIG_GENERATE_MP_TABLE
30 write_mp_table,
31#endif
32#ifdef CONFIG_GENERATE_ACPI_TABLE
33 write_acpi_tables,
34#endif
35#ifdef CONFIG_GENERATE_SMBIOS_TABLE
36 write_smbios_table,
37#endif
38};
39
Bin Meng5e2400e2015-04-24 18:10:04 +080040u8 table_compute_checksum(void *v, int len)
41{
42 u8 *bytes = v;
43 u8 checksum = 0;
44 int i;
45
46 for (i = 0; i < len; i++)
47 checksum -= bytes[i];
48
49 return checksum;
50}
51
Bin Meng7f5df8d2015-06-23 12:18:51 +080052void table_fill_string(char *dest, const char *src, size_t n, char pad)
53{
54 int start, len;
55 int i;
56
57 strncpy(dest, src, n);
58
59 /* Fill the remaining bytes with pad */
60 len = strlen(src);
61 start = len < n ? len : n;
62 for (i = start; i < n; i++)
63 dest[i] = pad;
64}
65
Bin Meng5e2400e2015-04-24 18:10:04 +080066void write_tables(void)
67{
Bin Mengef4d0a52016-02-27 22:58:01 -080068 u32 rom_table_start = ROM_TABLE_ADDR;
69 u32 rom_table_end;
70 int i;
Bin Meng5e2400e2015-04-24 18:10:04 +080071
Bin Mengef4d0a52016-02-27 22:58:01 -080072 for (i = 0; i < ARRAY_SIZE(table_write_funcs); i++) {
73 rom_table_end = table_write_funcs[i](rom_table_start);
74 rom_table_end = ALIGN(rom_table_end, ROM_TABLE_ALIGN);
75 rom_table_start = rom_table_end;
76 }
Bin Meng5e2400e2015-04-24 18:10:04 +080077}