tables.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef _X86_TABLES_H_
  7. #define _X86_TABLES_H_
  8. #include <tables_csum.h>
  9. /*
  10. * All x86 tables happen to like the address range from 0xf0000 to 0x100000.
  11. * We use 0xf0000 as the starting address to store those tables, including
  12. * PIRQ routing table, Multi-Processor table and ACPI table.
  13. */
  14. #define ROM_TABLE_ADDR 0xf0000
  15. #define ROM_TABLE_ALIGN 1024
  16. /* SeaBIOS expects coreboot tables at address range 0x0000-0x1000 */
  17. #define CB_TABLE_ADDR 0x800
  18. /**
  19. * table_compute_checksum() - Compute a table checksum
  20. *
  21. * This computes an 8-bit checksum for the configuration table.
  22. * All bytes in the configuration table, including checksum itself and
  23. * reserved bytes must add up to zero.
  24. *
  25. * @v: configuration table base address
  26. * @len: configuration table size
  27. * @return: the 8-bit checksum
  28. */
  29. u8 table_compute_checksum(void *v, int len);
  30. /**
  31. * table_fill_string() - Fill a string with pad in the configuration table
  32. *
  33. * This fills a string in the configuration table. It copies number of bytes
  34. * from the source string, and if source string length is shorter than the
  35. * required size to copy, pad the table string with the given pad character.
  36. *
  37. * @dest: where to fill a string
  38. * @src: where to copy from
  39. * @n: number of bytes to copy
  40. * @pad: character to pad the remaining bytes
  41. */
  42. void table_fill_string(char *dest, const char *src, size_t n, char pad);
  43. /**
  44. * write_tables() - Write x86 configuration tables
  45. *
  46. * This writes x86 configuration tables, including PIRQ routing table,
  47. * Multi-Processor table and ACPI table. Whether a specific type of
  48. * configuration table is written is controlled by a Kconfig option.
  49. */
  50. void write_tables(void);
  51. /**
  52. * write_pirq_routing_table() - Write PIRQ routing table
  53. *
  54. * This writes PIRQ routing table at a given address.
  55. *
  56. * @start: start address to write PIRQ routing table
  57. * @return: end address of PIRQ routing table
  58. */
  59. u32 write_pirq_routing_table(u32 start);
  60. #endif /* _X86_TABLES_H_ */