xref: /openbmc/qemu/include/hw/acpi/aml-build.h (revision 7824df3889499acc7466317175a3fb24a0824002)
119934e0eSIgor Mammedov #ifndef HW_ACPI_GEN_UTILS_H
219934e0eSIgor Mammedov #define HW_ACPI_GEN_UTILS_H
319934e0eSIgor Mammedov 
419934e0eSIgor Mammedov #include <stdint.h>
519934e0eSIgor Mammedov #include <glib.h>
619934e0eSIgor Mammedov #include "qemu/compiler.h"
7658c2718SShannon Zhao #include "hw/acpi/acpi-defs.h"
8658c2718SShannon Zhao 
9658c2718SShannon Zhao /* Reserve RAM space for tables: add another order of magnitude. */
10658c2718SShannon Zhao #define ACPI_BUILD_TABLE_MAX_SIZE         0x200000
11658c2718SShannon Zhao 
12658c2718SShannon Zhao #define ACPI_BUILD_APPNAME  "Bochs"
13658c2718SShannon Zhao #define ACPI_BUILD_APPNAME6 "BOCHS "
14658c2718SShannon Zhao #define ACPI_BUILD_APPNAME4 "BXPC"
15658c2718SShannon Zhao 
16658c2718SShannon Zhao #define ACPI_BUILD_TABLE_FILE "etc/acpi/tables"
17658c2718SShannon Zhao #define ACPI_BUILD_RSDP_FILE "etc/acpi/rsdp"
18658c2718SShannon Zhao #define ACPI_BUILD_TPMLOG_FILE "etc/tpm/log"
1919934e0eSIgor Mammedov 
200f2707e4SIgor Mammedov typedef enum {
210f2707e4SIgor Mammedov     AML_NO_OPCODE = 0,/* has only data */
220f2707e4SIgor Mammedov     AML_OPCODE,       /* has opcode optionally followed by data */
230f2707e4SIgor Mammedov     AML_PACKAGE,      /* has opcode and uses PkgLength for its length */
2456521fb8SMichael S. Tsirkin     AML_EXT_PACKAGE,  /* Same as AML_PACKAGE but also has 'ExOpPrefix' */
250f2707e4SIgor Mammedov     AML_BUFFER,       /* data encoded as 'DefBuffer' */
260f2707e4SIgor Mammedov     AML_RES_TEMPLATE, /* encoded as ResourceTemplate macro */
270f2707e4SIgor Mammedov } AmlBlockFlags;
280f2707e4SIgor Mammedov 
290f2707e4SIgor Mammedov struct Aml {
300f2707e4SIgor Mammedov     GArray *buf;
310f2707e4SIgor Mammedov 
320f2707e4SIgor Mammedov     /*< private >*/
330f2707e4SIgor Mammedov     uint8_t op;
340f2707e4SIgor Mammedov     AmlBlockFlags block_flags;
350f2707e4SIgor Mammedov };
360f2707e4SIgor Mammedov typedef struct Aml Aml;
370f2707e4SIgor Mammedov 
3852fa397cSIgor Mammedov typedef enum {
3952fa397cSIgor Mammedov     aml_decode10 = 0,
4052fa397cSIgor Mammedov     aml_decode16 = 1,
4152fa397cSIgor Mammedov } AmlIODecode;
4252fa397cSIgor Mammedov 
4331127938SIgor Mammedov typedef enum {
44e2ea299bSIgor Mammedov     aml_any_acc = 0,
45214ae59fSIgor Mammedov     aml_byte_acc = 1,
46e2ea299bSIgor Mammedov     aml_word_acc = 2,
47e2ea299bSIgor Mammedov     aml_dword_acc = 3,
48e2ea299bSIgor Mammedov     aml_qword_acc = 4,
49e2ea299bSIgor Mammedov     aml_buffer_acc = 5,
50af509897SZhu Guihua } AmlAccessType;
51af509897SZhu Guihua 
52af509897SZhu Guihua typedef enum {
53af509897SZhu Guihua     aml_preserve = 0,
54af509897SZhu Guihua     aml_write_as_ones = 1,
55af509897SZhu Guihua     aml_write_as_zeros = 2,
56af509897SZhu Guihua } AmlUpdateRule;
57214ae59fSIgor Mammedov 
58214ae59fSIgor Mammedov typedef enum {
5931127938SIgor Mammedov     aml_system_memory = 0x00,
6031127938SIgor Mammedov     aml_system_io = 0x01,
6131127938SIgor Mammedov } AmlRegionSpace;
6231127938SIgor Mammedov 
636ece7053SIgor Mammedov typedef enum {
646ece7053SIgor Mammedov     aml_memory_range = 0,
656ece7053SIgor Mammedov     aml_io_range = 1,
666ece7053SIgor Mammedov     aml_bus_number_range = 2,
676ece7053SIgor Mammedov } AmlResourceType;
686ece7053SIgor Mammedov 
696ece7053SIgor Mammedov typedef enum {
706ece7053SIgor Mammedov     aml_sub_decode = 1 << 1,
716ece7053SIgor Mammedov     aml_pos_decode = 0
726ece7053SIgor Mammedov } AmlDecode;
736ece7053SIgor Mammedov 
746ece7053SIgor Mammedov typedef enum {
756ece7053SIgor Mammedov     aml_max_fixed = 1 << 3,
766ece7053SIgor Mammedov     aml_max_not_fixed = 0,
776ece7053SIgor Mammedov } AmlMaxFixed;
786ece7053SIgor Mammedov 
796ece7053SIgor Mammedov typedef enum {
806ece7053SIgor Mammedov     aml_min_fixed = 1 << 2,
816ece7053SIgor Mammedov     aml_min_not_fixed = 0
826ece7053SIgor Mammedov } AmlMinFixed;
836ece7053SIgor Mammedov 
846ece7053SIgor Mammedov /*
856ece7053SIgor Mammedov  * ACPI 1.0b: Table 6-26 I/O Resource Flag (Resource Type = 1) Definitions
866ece7053SIgor Mammedov  * _RNG field definition
876ece7053SIgor Mammedov  */
886ece7053SIgor Mammedov typedef enum {
896ece7053SIgor Mammedov     aml_isa_only = 1,
906ece7053SIgor Mammedov     aml_non_isa_only = 2,
916ece7053SIgor Mammedov     aml_entire_range = 3,
926ece7053SIgor Mammedov } AmlISARanges;
936ece7053SIgor Mammedov 
946ece7053SIgor Mammedov /*
956ece7053SIgor Mammedov  * ACPI 1.0b: Table 6-25 Memory Resource Flag (Resource Type = 0) Definitions
966ece7053SIgor Mammedov  * _MEM field definition
976ece7053SIgor Mammedov  */
986ece7053SIgor Mammedov typedef enum {
996ece7053SIgor Mammedov     aml_non_cacheable = 0,
1006ece7053SIgor Mammedov     aml_cacheable = 1,
1016ece7053SIgor Mammedov     aml_write_combining = 2,
1026ece7053SIgor Mammedov     aml_prefetchable = 3,
1036ece7053SIgor Mammedov } AmlCacheble;
1046ece7053SIgor Mammedov 
1056ece7053SIgor Mammedov /*
1066ece7053SIgor Mammedov  * ACPI 1.0b: Table 6-25 Memory Resource Flag (Resource Type = 0) Definitions
1076ece7053SIgor Mammedov  * _RW field definition
1086ece7053SIgor Mammedov  */
1096ece7053SIgor Mammedov typedef enum {
1106ece7053SIgor Mammedov     aml_ReadOnly = 0,
1116ece7053SIgor Mammedov     aml_ReadWrite = 1,
1126ece7053SIgor Mammedov } AmlReadAndWrite;
1136ece7053SIgor Mammedov 
114658c2718SShannon Zhao typedef
115658c2718SShannon Zhao struct AcpiBuildTables {
116658c2718SShannon Zhao     GArray *table_data;
117658c2718SShannon Zhao     GArray *rsdp;
118658c2718SShannon Zhao     GArray *tcpalog;
119658c2718SShannon Zhao     GArray *linker;
120658c2718SShannon Zhao } AcpiBuildTables;
121658c2718SShannon Zhao 
1220f2707e4SIgor Mammedov /**
1230f2707e4SIgor Mammedov  * init_aml_allocator:
1240f2707e4SIgor Mammedov  *
1250f2707e4SIgor Mammedov  * Called for initializing API allocator which allow to use
1260f2707e4SIgor Mammedov  * AML API.
1270f2707e4SIgor Mammedov  * Returns: toplevel container which accumulates all other
1280f2707e4SIgor Mammedov  * AML elements for a table.
1290f2707e4SIgor Mammedov  */
1300f2707e4SIgor Mammedov Aml *init_aml_allocator(void);
1310f2707e4SIgor Mammedov 
1320f2707e4SIgor Mammedov /**
1330f2707e4SIgor Mammedov  * free_aml_allocator:
1340f2707e4SIgor Mammedov  *
1350f2707e4SIgor Mammedov  * Releases all elements used by AML API, frees associated memory
1360f2707e4SIgor Mammedov  * and invalidates AML allocator. After this call @init_aml_allocator
1370f2707e4SIgor Mammedov  * should be called again if AML API is to be used again.
1380f2707e4SIgor Mammedov  */
1390f2707e4SIgor Mammedov void free_aml_allocator(void);
1400f2707e4SIgor Mammedov 
1410f2707e4SIgor Mammedov /**
1420f2707e4SIgor Mammedov  * aml_append:
1430f2707e4SIgor Mammedov  * @parent_ctx: context to which @child element is added
1440f2707e4SIgor Mammedov  * @child: element that is copied into @parent_ctx context
1450f2707e4SIgor Mammedov  *
1460f2707e4SIgor Mammedov  * Joins Aml elements together and helps to construct AML tables
1470f2707e4SIgor Mammedov  * Examle of usage:
1480f2707e4SIgor Mammedov  *   Aml *table = aml_def_block("SSDT", ...);
149*7824df38SGal Hammer  *   Aml *sb = aml_scope("\\_SB");
1500f2707e4SIgor Mammedov  *   Aml *dev = aml_device("PCI0");
1510f2707e4SIgor Mammedov  *
1520f2707e4SIgor Mammedov  *   aml_append(dev, aml_name_decl("HID", aml_eisaid("PNP0A03")));
1530f2707e4SIgor Mammedov  *   aml_append(sb, dev);
1540f2707e4SIgor Mammedov  *   aml_append(table, sb);
1550f2707e4SIgor Mammedov  */
1560f2707e4SIgor Mammedov void aml_append(Aml *parent_ctx, Aml *child);
1570f2707e4SIgor Mammedov 
1583c054bd5SIgor Mammedov /* non block AML object primitives */
1593c054bd5SIgor Mammedov Aml *aml_name(const char *name_format, ...) GCC_FMT_ATTR(1, 2);
1603c054bd5SIgor Mammedov Aml *aml_name_decl(const char *name, Aml *val);
161b25af5adSIgor Mammedov Aml *aml_return(Aml *val);
162295a515dSIgor Mammedov Aml *aml_int(const uint64_t val);
1637193f3a6SIgor Mammedov Aml *aml_arg(int pos);
164c263b3f7SIgor Mammedov Aml *aml_store(Aml *val, Aml *target);
165926f5aaeSIgor Mammedov Aml *aml_and(Aml *arg1, Aml *arg2);
16634189453SIgor Mammedov Aml *aml_notify(Aml *arg1, Aml *arg2);
1673f3992b7SIgor Mammedov Aml *aml_call1(const char *method, Aml *arg1);
1683f3992b7SIgor Mammedov Aml *aml_call2(const char *method, Aml *arg1, Aml *arg2);
1693f3992b7SIgor Mammedov Aml *aml_call3(const char *method, Aml *arg1, Aml *arg2, Aml *arg3);
1703f3992b7SIgor Mammedov Aml *aml_call4(const char *method, Aml *arg1, Aml *arg2, Aml *arg3, Aml *arg4);
17152fa397cSIgor Mammedov Aml *aml_io(AmlIODecode dec, uint16_t min_base, uint16_t max_base,
17252fa397cSIgor Mammedov             uint8_t aln, uint8_t len);
17331127938SIgor Mammedov Aml *aml_operation_region(const char *name, AmlRegionSpace rs,
17431127938SIgor Mammedov                           uint32_t offset, uint32_t len);
17570560453SIgor Mammedov Aml *aml_irq_no_flags(uint8_t irq);
176214ae59fSIgor Mammedov Aml *aml_named_field(const char *name, unsigned length);
177e2ea299bSIgor Mammedov Aml *aml_reserved_field(unsigned length);
178b8a5d689SIgor Mammedov Aml *aml_local(int num);
179d5e5830fSIgor Mammedov Aml *aml_string(const char *name_format, ...) GCC_FMT_ATTR(1, 2);
18015e44e56SIgor Mammedov Aml *aml_equal(Aml *arg1, Aml *arg2);
1813dd15643SIgor Mammedov Aml *aml_processor(uint8_t proc_id, uint32_t pblk_addr, uint8_t pblk_len,
1823dd15643SIgor Mammedov                    const char *name_format, ...) GCC_FMT_ATTR(4, 5);
183a7891dacSIgor Mammedov Aml *aml_eisaid(const char *str);
1846ece7053SIgor Mammedov Aml *aml_word_bus_number(AmlMinFixed min_fixed, AmlMaxFixed max_fixed,
1856ece7053SIgor Mammedov                          AmlDecode dec, uint16_t addr_gran,
1866ece7053SIgor Mammedov                          uint16_t addr_min, uint16_t addr_max,
1876ece7053SIgor Mammedov                          uint16_t addr_trans, uint16_t len);
1886ece7053SIgor Mammedov Aml *aml_word_io(AmlMinFixed min_fixed, AmlMaxFixed max_fixed,
1896ece7053SIgor Mammedov                  AmlDecode dec, AmlISARanges isa_ranges,
1906ece7053SIgor Mammedov                  uint16_t addr_gran, uint16_t addr_min,
1916ece7053SIgor Mammedov                  uint16_t addr_max, uint16_t addr_trans,
1926ece7053SIgor Mammedov                  uint16_t len);
1936ece7053SIgor Mammedov Aml *aml_dword_memory(AmlDecode dec, AmlMinFixed min_fixed,
1946ece7053SIgor Mammedov                       AmlMaxFixed max_fixed, AmlCacheble cacheable,
1956ece7053SIgor Mammedov                       AmlReadAndWrite read_and_write,
1966ece7053SIgor Mammedov                       uint32_t addr_gran, uint32_t addr_min,
1976ece7053SIgor Mammedov                       uint32_t addr_max, uint32_t addr_trans,
1986ece7053SIgor Mammedov                       uint32_t len);
1996ece7053SIgor Mammedov Aml *aml_qword_memory(AmlDecode dec, AmlMinFixed min_fixed,
2006ece7053SIgor Mammedov                       AmlMaxFixed max_fixed, AmlCacheble cacheable,
2016ece7053SIgor Mammedov                       AmlReadAndWrite read_and_write,
2026ece7053SIgor Mammedov                       uint64_t addr_gran, uint64_t addr_min,
2036ece7053SIgor Mammedov                       uint64_t addr_max, uint64_t addr_trans,
2046ece7053SIgor Mammedov                       uint64_t len);
2053c054bd5SIgor Mammedov 
2062ef7c27bSIgor Mammedov /* Block AML object primitives */
2072ef7c27bSIgor Mammedov Aml *aml_scope(const char *name_format, ...) GCC_FMT_ATTR(1, 2);
208be06ebd0SIgor Mammedov Aml *aml_device(const char *name_format, ...) GCC_FMT_ATTR(1, 2);
209ea2407d7SIgor Mammedov Aml *aml_method(const char *name, int arg_count);
21032acac9eSIgor Mammedov Aml *aml_if(Aml *predicate);
2113bfa74a7SIgor Mammedov Aml *aml_package(uint8_t num_elements);
21204b8da54SIgor Mammedov Aml *aml_buffer(void);
213ad4a80bcSIgor Mammedov Aml *aml_resource_template(void);
214af509897SZhu Guihua Aml *aml_field(const char *name, AmlAccessType type, AmlUpdateRule rule);
215a678508eSIgor Mammedov Aml *aml_varpackage(uint32_t num_elements);
2162ef7c27bSIgor Mammedov 
217658c2718SShannon Zhao void
218658c2718SShannon Zhao build_header(GArray *linker, GArray *table_data,
219658c2718SShannon Zhao              AcpiTableHeader *h, const char *sig, int len, uint8_t rev);
220658c2718SShannon Zhao void *acpi_data_push(GArray *table_data, unsigned size);
221658c2718SShannon Zhao unsigned acpi_data_len(GArray *table);
222658c2718SShannon Zhao void acpi_add_table(GArray *table_offsets, GArray *table_data);
223658c2718SShannon Zhao void acpi_build_tables_init(AcpiBuildTables *tables);
224658c2718SShannon Zhao void acpi_build_tables_cleanup(AcpiBuildTables *tables, bool mfre);
225658c2718SShannon Zhao 
22619934e0eSIgor Mammedov #endif
227