Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Bin Meng | 5e2400e | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com> |
Bin Meng | 5e2400e | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef _X86_TABLES_H_ |
| 7 | #define _X86_TABLES_H_ |
| 8 | |
Alexander Graf | 2b445e4 | 2016-08-19 01:23:22 +0200 | [diff] [blame] | 9 | #include <tables_csum.h> |
| 10 | |
Andy Shevchenko | c3df28f | 2017-07-28 20:02:15 +0300 | [diff] [blame] | 11 | #define ROM_TABLE_ADDR CONFIG_ROM_TABLE_ADDR |
| 12 | #define ROM_TABLE_END (CONFIG_ROM_TABLE_ADDR + CONFIG_ROM_TABLE_SIZE - 1) |
Bin Meng | 5e2400e | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 13 | |
Bin Meng | 897e1dc | 2016-02-27 22:57:59 -0800 | [diff] [blame] | 14 | #define ROM_TABLE_ALIGN 1024 |
| 15 | |
Bin Meng | 3cf2371 | 2016-02-28 23:54:50 -0800 | [diff] [blame] | 16 | /* SeaBIOS expects coreboot tables at address range 0x0000-0x1000 */ |
| 17 | #define CB_TABLE_ADDR 0x800 |
| 18 | |
Bin Meng | 5e2400e | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 19 | /** |
Bin Meng | 7f5df8d | 2015-06-23 12:18:51 +0800 | [diff] [blame] | 20 | * table_fill_string() - Fill a string with pad in the configuration table |
| 21 | * |
| 22 | * This fills a string in the configuration table. It copies number of bytes |
| 23 | * from the source string, and if source string length is shorter than the |
| 24 | * required size to copy, pad the table string with the given pad character. |
| 25 | * |
| 26 | * @dest: where to fill a string |
| 27 | * @src: where to copy from |
| 28 | * @n: number of bytes to copy |
| 29 | * @pad: character to pad the remaining bytes |
| 30 | */ |
| 31 | void table_fill_string(char *dest, const char *src, size_t n, char pad); |
| 32 | |
| 33 | /** |
Bin Meng | 5e2400e | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 34 | * write_tables() - Write x86 configuration tables |
| 35 | * |
| 36 | * This writes x86 configuration tables, including PIRQ routing table, |
| 37 | * Multi-Processor table and ACPI table. Whether a specific type of |
| 38 | * configuration table is written is controlled by a Kconfig option. |
Simon Glass | 38e498c | 2020-11-04 09:57:18 -0700 | [diff] [blame] | 39 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 40 | * Return: 0 if OK, -ENOSPC if table too large |
Bin Meng | 5e2400e | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 41 | */ |
Simon Glass | 38e498c | 2020-11-04 09:57:18 -0700 | [diff] [blame] | 42 | int write_tables(void); |
Bin Meng | 5e2400e | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 43 | |
| 44 | /** |
| 45 | * write_pirq_routing_table() - Write PIRQ routing table |
| 46 | * |
| 47 | * This writes PIRQ routing table at a given address. |
| 48 | * |
| 49 | * @start: start address to write PIRQ routing table |
| 50 | * @return: end address of PIRQ routing table |
| 51 | */ |
Simon Glass | 42fd8c1 | 2017-01-16 07:03:35 -0700 | [diff] [blame] | 52 | ulong write_pirq_routing_table(ulong start); |
Bin Meng | 5e2400e | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 53 | |
| 54 | #endif /* _X86_TABLES_H_ */ |